interface SecretsManagerEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowOutputPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowOutputPropsMixin_SecretsManagerEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowOutputPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowOutputPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnFlowOutputPropsMixin » SecretsManagerEncryptionKeyConfigurationProperty |
The configuration settings for transit encryption of a flow output 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
const secretsManagerEncryptionKeyConfigurationProperty: mediaconnect.CfnFlowOutputPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty = {
roleArn: 'roleArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of the IAM role used for transit encryption to the router input using AWS Secrets Manager. |
| secret | string | The ARN of the AWS Secrets Manager secret used for transit encryption to the router input. |
roleArn?
Type:
string
(optional)
The ARN of the IAM role used for transit encryption to the router input using AWS Secrets Manager.
secretArn?
Type:
string
(optional)
The ARN of the AWS Secrets Manager secret used for transit encryption to the router input.

.NET
Go
Java
Python
TypeScript