Overload List

NameDescription
AmazonAutoScalingClient()()()()
Constructs AmazonAutoScalingClient 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>
AmazonAutoScalingClient(AmazonAutoScalingConfig)
Constructs AmazonAutoScalingClient 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>
AmazonAutoScalingClient(AWSCredentials)
Constructs AmazonAutoScalingClient with AWS Credentials
AmazonAutoScalingClient(String, String)
Constructs AmazonAutoScalingClient with AWS Access Key ID and AWS Secret Key
AmazonAutoScalingClient(AWSCredentials, AmazonAutoScalingConfig)
Constructs AmazonAutoScalingClient with AWS Credentials and an AmazonAutoScalingClient Configuration object.
AmazonAutoScalingClient(String, String, AmazonAutoScalingConfig)
Constructs AmazonAutoScalingClient with AWS Access Key ID, AWS Secret Key and an AmazonAutoScalingClient Configuration object. If the config object's UseSecureStringForAwsSecretKey is false, the AWS Secret Key is stored as a clear-text string. Please use this option only if the application environment doesn't allow the use of SecureStrings.

See Also