/// <summary> /// Constructs AmazonRestJsonTestClient with AWS Credentials and an /// AmazonRestJsonTestClient Configuration object. /// </summary> /// <param name="credentials">AWS Credentials</param> /// <param name="clientConfig">The AmazonRestJsonTestClient Configuration Object</param> public AmazonRestJsonTestClient(AWSCredentials credentials, AmazonRestJsonTestConfig clientConfig) : base(credentials, clientConfig) { }
/// <summary> /// Constructs AmazonRestJsonTestClient with AWS Access Key ID, AWS Secret Key and an /// AmazonRestJsonTestClient 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 AmazonRestJsonTestClient Configuration Object</param> public AmazonRestJsonTestClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonRestJsonTestConfig clientConfig) : base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig) { }
/// <summary> /// Constructs AmazonRestJsonTestClient 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 AmazonRestJsonTestClient Configuration Object</param> public AmazonRestJsonTestClient(AmazonRestJsonTestConfig config) : base(FallbackCredentialsFactory.GetCredentials(), config) { }