interface MediaLiveTransitEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_MediaLiveTransitEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » MediaLiveTransitEncryptionKeyConfigurationProperty |
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';
declare const automatic: any;
const mediaLiveTransitEncryptionKeyConfigurationProperty: mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionKeyConfigurationProperty = {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| automatic? | any | Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation. |
| secrets | IResolvable | Secrets | The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN. |
automatic?
Type:
any
(optional)
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
secretsManager?
Type:
IResolvable | Secrets
(optional)
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.

.NET
Go
Java
Python
TypeScript