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

.NET
Go
Java
Python
TypeScript