interface FlowTransitEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlowOutput.FlowTransitEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlowOutput_FlowTransitEncryptionProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlowOutput.FlowTransitEncryptionProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlowOutput.FlowTransitEncryptionProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlowOutput » 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 { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
declare const automatic: any;
const flowTransitEncryptionProperty: mediaconnect.CfnFlowOutput.FlowTransitEncryptionProperty = {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Flow | Configuration settings for flow transit encryption keys. |
| encryption | string |
encryptionKeyConfiguration
Type:
IResolvable | Flow
Configuration settings for flow transit encryption keys.
encryptionKeyType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript