Overload List

NameDescription
CreateAmazonS3Client()()()()
Create a client for the Amazon S3 Service with the credentials defined in the App.config. Example App.config with credentials set.
CopyC#
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="AWSAccessKey" value="********************"/>
        <add key="AWSSecretKey" value="****************************************"/>
    </appSettings>
</configuration>
CreateAmazonS3Client(AmazonS3Config)
Create a client for the Amazon S3 Service with the credentials defined in the App.config. Example App.config with credentials set.
CopyC#
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="AWSAccessKey" value="********************"/>
        <add key="AWSSecretKey" value="****************************************"/>
    </appSettings>
</configuration>
CreateAmazonS3Client(String, String)
Create a client for the Amazon S3 service with the default configuration
CreateAmazonS3Client(String, String, AmazonS3Config)
Create a client for the Amazon S3 service with the specified configuration

See Also