interface MediaConnectFlowRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_MediaConnectFlowRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » MediaConnectFlowRouterOutputConfigurationProperty |
Configuration settings for connecting a router output to a MediaConnect flow source.
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 mediaConnectFlowRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty = {
destinationTransitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
// the properties below are optional
flowArn: 'flowArn',
flowSourceArn: 'flowSourceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | 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 this router output. |
| flow | string | The ARN of the flow source to connect to this router output. |
destinationTransitEncryption
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 this router output.
flowSourceArn?
Type:
string
(optional)
The ARN of the flow source to connect to this router output.

.NET
Go
Java
Python
TypeScript