interface SecretsManagerEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_SecretsManagerEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnFlowPropsMixin » SecretsManagerEncryptionKeyConfigurationProperty |
The configuration settings for transit encryption of a flow source using AWS Secrets Manager, including the secret ARN and role ARN.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const secretsManagerEncryptionKeyConfigurationProperty: mediaconnect_mixins.CfnFlowPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty = {
roleArn: 'roleArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of the IAM role used for transit encryption from the router output using AWS Secrets Manager. |
| secret | string | The ARN of the AWS Secrets Manager secret used for transit encryption from the router output. |
roleArn?
Type:
string
(optional)
The ARN of the IAM role used for transit encryption from the router output using AWS Secrets Manager.
secretArn?
Type:
string
(optional)
The ARN of the AWS Secrets Manager secret used for transit encryption from the router output.

.NET
Go
Java
Python
TypeScript