interface RouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.RouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_RouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.RouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.RouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » RouterOutputConfigurationProperty |
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 routerOutputConfigurationProperty: mediaconnect.CfnRouterOutput.RouterOutputConfigurationProperty = {
mediaConnectFlow: {
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',
},
mediaLiveInput: {
destinationTransitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
// the properties below are optional
mediaLiveInputArn: 'mediaLiveInputArn',
mediaLivePipelineId: 'mediaLivePipelineId',
},
standard: {
networkInterfaceArn: 'networkInterfaceArn',
protocolConfiguration: {
rist: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
},
rtp: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
},
srtCaller: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
minimumLatencyMilliseconds: 123,
// the properties below are optional
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
streamId: 'streamId',
},
srtListener: {
minimumLatencyMilliseconds: 123,
port: 123,
// the properties below are optional
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
},
},
// the properties below are optional
protocol: 'protocol',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| media | IResolvable | Media | Configuration settings for connecting a router output to a MediaConnect flow source. |
| media | IResolvable | Media | Configuration settings for connecting a router output to a MediaLive input. |
| standard? | IResolvable | Standard | The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone. |
mediaConnectFlow?
Type:
IResolvable | Media
(optional)
Configuration settings for connecting a router output to a MediaConnect flow source.
mediaLiveInput?
Type:
IResolvable | Media
(optional)
Configuration settings for connecting a router output to a MediaLive input.
standard?
Type:
IResolvable | Standard
(optional)
The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.

.NET
Go
Java
Python
TypeScript