class RouterInputTier
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterInputTier |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterInputTier |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterInputTier |
Python | aws_cdk.aws_mediaconnect_alpha.RouterInputTier |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterInputTier |
Routing tier based on your maximum bitrate requirements.
Example
declare const stack: Stack;
declare const mediaLiveChannel: medialive.IChannel;
declare const transitSecret: Secret; // must hold the same value as the channel's MediaConnectRouterSettings.shared() secret
const input = new RouterInput(stack, 'ChannelInput', {
routerInputName: 'channel-input',
maximumBitrate: Bitrate.mbps(20),
routingScope: RoutingScope.REGIONAL,
tier: RouterInputTier.INPUT_50,
configuration: RouterInputConfiguration.mediaLiveChannel({
channel: mediaLiveChannel,
outputName: 'router-ts',
pipeline: MediaLivePipeline.PIPELINE_0,
sourceTransitDecryption: { secret: transitSecret },
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The tier string value. |
| static INPUT_100 | Router | Supports a maximum bitrate up to 100 megabits per second. |
| static INPUT_20 | Router | Supports a maximum bitrate up to 20 megabits per second. |
| static INPUT_50 | Router | Supports a maximum bitrate up to 50 megabits per second. |
value
Type:
string
The tier string value.
static INPUT_100
Type:
Router
Supports a maximum bitrate up to 100 megabits per second.
static INPUT_20
Type:
Router
Supports a maximum bitrate up to 20 megabits per second.
static INPUT_50
Type:
Router
Supports a maximum bitrate up to 50 megabits per second.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom tier value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): RouterInputTier
Parameters
- value
stringโ The tier string value.
Returns
Use a custom tier value.

.NET
Go
Java
Python
TypeScript (