interface FlowTransitEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_FlowTransitEncryptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » FlowTransitEncryptionProperty |
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
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 flowTransitEncryptionProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionProperty = {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Flow | Configuration settings for flow transit encryption keys. |
| encryption | string |
encryptionKeyConfiguration?
Type:
IResolvable | Flow
(optional)
Configuration settings for flow transit encryption keys.
encryptionKeyType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript