コード例 #1
0
        public SecretsManagerConfigurationProvider(IAmazonSecretsManager client, SecretsManagerConfigurationProviderOptions options)
        {
            Options = options ?? throw new ArgumentNullException(nameof(options));

            Client = client ?? throw new ArgumentNullException(nameof(client));
        }
 public SecretsManagerConfigurationSource(AWSCredentials credentials = null, SecretsManagerConfigurationProviderOptions options = null)
 {
     Credentials = credentials;
     Options     = options ?? new SecretsManagerConfigurationProviderOptions();
 }