interface MediaConnectFlowRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_MediaConnectFlowRouterInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.MediaConnectFlowRouterInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
declare const automatic: any;
const mediaConnectFlowRouterInputConfigurationProperty: mediaconnect_mixins.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