interface SecretsManagerAccessTokenConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MediaTailor.CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnSourceLocation_SecretsManagerAccessTokenConfigurationProperty | 
|  Java | software.amazon.awscdk.services.mediatailor.CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty | 
|  Python | aws_cdk.aws_mediatailor.CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_mediatailor»CfnSourceLocation»SecretsManagerAccessTokenConfigurationProperty | 
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 { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const secretsManagerAccessTokenConfigurationProperty: mediatailor.CfnSourceLocation.SecretsManagerAccessTokenConfigurationProperty = {
  headerName: 'headerName',
  secretArn: 'secretArn',
  secretStringKey: 'secretStringKey',
};
Properties
| Name | Type | Description | 
|---|---|---|
| header | string | The name of the HTTP header used to supply the access token in requests to the source location. | 
| secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token. | 
| secret | string | 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. | 
headerName?
Type:
string
(optional)
The name of the HTTP header used to supply the access token in requests to the source location.
secretArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.
secretStringKey?
Type:
string
(optional)
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.
