interface SecretsManagerEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.SecretsManagerEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_SecretsManagerEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.SecretsManagerEncryptionKeyConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.SecretsManagerEncryptionKeyConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » SecretsManagerEncryptionKeyConfigurationProperty |
The configuration settings for transit encryption 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.CfnRouterInput.SecretsManagerEncryptionKeyConfigurationProperty = {
roleArn: 'roleArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| role | string | The ARN of the IAM role assumed by MediaConnect to access the AWS Secrets Manager secret. |
| secret | string | The ARN of the AWS Secrets Manager secret used for transit encryption. |
roleArn
Type:
string
The ARN of the IAM role assumed by MediaConnect to access the AWS Secrets Manager secret.
secretArn
Type:
string
The ARN of the AWS Secrets Manager secret used for transit encryption.

.NET
Go
Java
Python
TypeScript