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 networkInterface: RouterNetworkInterface;
const input = new RouterInput(stack, 'FailoverInput', {
routerInputName: 'failover-input',
maximumBitrate: Bitrate.mbps(10),
routingScope: RoutingScope.REGIONAL,
tier: RouterInputTier.INPUT_50,
configuration: RouterInputConfiguration.failover({
networkInterface: networkInterface,
protocols: [
RouterInputProtocol.rist({
port: 5000,
recoveryLatency: Duration.millis(1000),
}),
RouterInputProtocol.rist({
port: 5002, // Must not be consecutive with primary port
recoveryLatency: Duration.millis(1000),
}),
],
sourcePriority: SourcePriorityConfig.primarySecondary(PrimarySource.FIRST_SOURCE),
}),
});
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 (