interface SecretsManagerEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlow.SecretsManagerEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlow_SecretsManagerEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlow.SecretsManagerEncryptionKeyConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlow.SecretsManagerEncryptionKeyConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlow » 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 { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const secretsManagerEncryptionKeyConfigurationProperty: mediaconnect.CfnFlow.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
The ARN of the IAM role used for transit encryption from the router output using AWS Secrets Manager.
secretArn
Type:
string
The ARN of the AWS Secrets Manager secret used for transit encryption from the router output.

.NET
Go
Java
Python
TypeScript