Class CfnSourceLocationPropsMixin.SecretsManagerAccessTokenConfigurationProperty
AWS Secrets Manager access token configuration parameters.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSourceLocationPropsMixin.SecretsManagerAccessTokenConfigurationProperty : CfnSourceLocationPropsMixin.ISecretsManagerAccessTokenConfigurationProperty
Syntax (vb)
Public Class CfnSourceLocationPropsMixin.SecretsManagerAccessTokenConfigurationProperty Implements CfnSourceLocationPropsMixin.ISecretsManagerAccessTokenConfigurationProperty
Remarks
For information about Secrets Manager access token authentication, see Working with AWS Secrets Manager access token authentication .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins;
var secretsManagerAccessTokenConfigurationProperty = new SecretsManagerAccessTokenConfigurationProperty {
HeaderName = "headerName",
SecretArn = "secretArn",
SecretStringKey = "secretStringKey"
};
Synopsis
Constructors
| SecretsManagerAccessTokenConfigurationProperty() | AWS Secrets Manager access token configuration parameters. |
Properties
| HeaderName | The name of the HTTP header used to supply the access token in requests to the source location. |
| SecretArn | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token. |
| SecretStringKey | 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. |
Constructors
SecretsManagerAccessTokenConfigurationProperty()
AWS Secrets Manager access token configuration parameters.
public SecretsManagerAccessTokenConfigurationProperty()
Remarks
For information about Secrets Manager access token authentication, see Working with AWS Secrets Manager access token authentication .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins;
var secretsManagerAccessTokenConfigurationProperty = new SecretsManagerAccessTokenConfigurationProperty {
HeaderName = "headerName",
SecretArn = "secretArn",
SecretStringKey = "secretStringKey"
};
Properties
HeaderName
The name of the HTTP header used to supply the access token in requests to the source location.
public string? HeaderName { get; set; }
Property Value
Remarks
SecretArn
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the access token.
public string? SecretArn { get; set; }
Property Value
Remarks
SecretStringKey
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.
public string? SecretStringKey { get; set; }