interface RouterInputTransitEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputPropsMixin.RouterInputTransitEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputPropsMixin_RouterInputTransitEncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputPropsMixin.RouterInputTransitEncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputPropsMixin.RouterInputTransitEncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterInputPropsMixin » RouterInputTransitEncryptionProperty |
The transit encryption settings for a router input.
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/cfn-property-mixins';
declare const automatic: any;
const routerInputTransitEncryptionProperty: mediaconnect.CfnRouterInputPropsMixin.RouterInputTransitEncryptionProperty = {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Router | Defines the configuration settings for transit encryption keys. |
| encryption | string |
encryptionKeyConfiguration?
Type:
IResolvable | Router
(optional)
Defines the configuration settings for transit encryption keys.
encryptionKeyType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript