interface MediaConnectFlowRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_MediaConnectFlowRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » 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-lib';
declare const automatic: any;
const mediaConnectFlowRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty = {
sourceTransitDecryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
// the properties below are optional
flowArn: 'flowArn',
flowOutputArn: 'flowOutputArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Flow | The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow. |
| flow | string | The ARN of the flow to connect to. |
| flow | string | The ARN of the flow output to connect to this router input. |
sourceTransitDecryption
Type:
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.

.NET
Go
Java
Python
TypeScript