interface MediaConnectFlowRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputPropsMixin_MediaConnectFlowRouterInputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterInputPropsMixin » MediaConnectFlowRouterInputConfigurationProperty |
Configuration settings for connecting a router input to a flow output.
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 mediaConnectFlowRouterInputConfigurationProperty: mediaconnect.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty = {
flowArn: 'flowArn',
flowOutputArn: 'flowOutputArn',
sourceTransitDecryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| flow | string | The ARN of the flow to connect to. |
| flow | string | The ARN of the flow output to connect to this router input. |
| source | IResolvable | Flow | The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow. |
flowArn?
Type:
string
(optional)
The ARN of the flow to connect to.
flowOutputArn?
Type:
string
(optional)
The ARN of the flow output to connect to this router input.
sourceTransitDecryption?
Type:
IResolvable | Flow
(optional)
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.

.NET
Go
Java
Python
TypeScript