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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the HTTP header used to supply the access token in requests to the source location.default String
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.default String
The AWS Secrets Manager SecretString key associated with the access token.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeaderName
The name of the HTTP header used to supply the access token in requests to the source location.- See Also:
-
getSecretArn
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.- See Also:
-
getSecretStringKey
The AWS Secrets Manager SecretString key associated with the access token. MediaTailor uses the key to look up SecretString key and value pair containing the access token.- See Also:
-
builder
@Stability(Stable) static CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty.Builder builder()
-