Interface CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnSourceLocation

@Stability(Stable) public static interface CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty extends software.amazon.jsii.JsiiSerializable
AWS Secrets Manager access token configuration parameters.

For information about Secrets Manager access token authentication, see Working with AWS Secrets Manager access token authentication .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediatailor.*;
 SecretsManagerAccessTokenConfigurationProperty secretsManagerAccessTokenConfigurationProperty = SecretsManagerAccessTokenConfigurationProperty.builder()
         .headerName("headerName")
         .secretArn("secretArn")
         .secretStringKey("secretStringKey")
         .build();
 

See Also: