interface FlowTransitEncryptionKeyConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_FlowTransitEncryptionKeyConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » FlowTransitEncryptionKeyConfigurationProperty |
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 flowTransitEncryptionKeyConfigurationProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.FlowTransitEncryptionKeyConfigurationProperty = {
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