/// <summary> /// Constructs AmazonShieldClient with AWS Access Key ID, AWS Secret Key and an /// AmazonShieldClient Configuration object. /// </summary> /// <param name="awsAccessKeyId">AWS Access Key ID</param> /// <param name="awsSecretAccessKey">AWS Secret Access Key</param> /// <param name="awsSessionToken">AWS Session Token</param> /// <param name="clientConfig">The AmazonShieldClient Configuration Object</param> public AmazonShieldClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonShieldConfig clientConfig) : base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig) { }
/// <summary> /// Constructs AmazonShieldClient with AWS Credentials and an /// AmazonShieldClient Configuration object. /// </summary> /// <param name="credentials">AWS Credentials</param> /// <param name="clientConfig">The AmazonShieldClient Configuration Object</param> public AmazonShieldClient(AWSCredentials credentials, AmazonShieldConfig clientConfig) : base(credentials, clientConfig) { }
/// <summary> /// Constructs AmazonShieldClient with the credentials loaded from the application's /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance. /// /// Example App.config with credentials set. /// <code> /// <?xml version="1.0" encoding="utf-8" ?> /// <configuration> /// <appSettings> /// <add key="AWSProfileName" value="AWS Default"/> /// </appSettings> /// </configuration> /// </code> /// /// </summary> /// <param name="config">The AmazonShieldClient Configuration Object</param> public AmazonShieldClient(AmazonShieldConfig config) : base(FallbackCredentialsFactory.GetCredentials(), config) { }