interface MediaLiveTransitEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterOutputPropsMixin_MediaLiveTransitEncryptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterOutputPropsMixin » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
declare const automatic: any;
const mediaLiveTransitEncryptionProperty: mediaconnect_mixins.CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty = {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Media | Configuration settings for the MediaLive transit encryption key. |
| encryption | string |
encryptionKeyConfiguration?
Type:
IResolvable | Media
(optional)
Configuration settings for the MediaLive transit encryption key.
encryptionKeyType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript