interface CfnRouterOutputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutputProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutputProps |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutputProps |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutputProps |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutputProps |
Properties for defining a CfnRouterOutput.
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;
declare const default_: any;
const cfnRouterOutputProps: mediaconnect.CfnRouterOutputProps = {
configuration: {
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',
},
},
maximumBitrate: 123,
name: 'name',
routingScope: 'routingScope',
tier: 'tier',
// the properties below are optional
availabilityZone: 'availabilityZone',
maintenanceConfiguration: {
default: default_,
preferredDayTime: {
day: 'day',
time: 'time',
},
},
regionName: 'regionName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Router | The configuration settings for a router output. |
| maximum | number | The maximum bitrate for the router output. |
| name | string | The name of the router output. |
| routing | string | |
| tier | string | |
| availability | string | The Availability Zone where you want to create the router output. |
| maintenance | IResolvable | Maintenance | The configuration settings for maintenance operations, including preferred maintenance windows and schedules. |
| region | string | The AWS Region for the router output. |
| tags? | Cfn[] | Key-value pairs that can be used to tag this router output. |
configuration
Type:
IResolvable | Router
The configuration settings for a router output.
maximumBitrate
Type:
number
The maximum bitrate for the router output.
name
Type:
string
The name of the router output.
routingScope
Type:
string
tier
Type:
string
availabilityZone?
Type:
string
(optional)
The Availability Zone where you want to create the router output.
This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided.
maintenanceConfiguration?
Type:
IResolvable | Maintenance
(optional)
The configuration settings for maintenance operations, including preferred maintenance windows and schedules.
regionName?
Type:
string
(optional)
The AWS Region for the router output.
Defaults to the current region if not specified.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag this router output.

.NET
Go
Java
Python
TypeScript