interface MediaLiveTransitEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_MediaLiveTransitEncryptionProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » MediaLiveTransitEncryptionProperty |
The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.
This configuration determines whether encryption keys are automatically managed by the service or manually managed through AWS Secrets Manager.
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 mediaLiveTransitEncryptionProperty: mediaconnect.CfnRouterOutput.MediaLiveTransitEncryptionProperty = {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Media | Configuration settings for the MediaLive transit encryption key. |
| encryption | string |
encryptionKeyConfiguration
Type:
IResolvable | Media
Configuration settings for the MediaLive transit encryption key.
encryptionKeyType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript