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