class RouterOutputTier
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterOutputTier |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterOutputTier |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterOutputTier |
Python | aws_cdk.aws_mediaconnect_alpha.RouterOutputTier |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterOutputTier |
Routing tier that determines the maximum bitrate (in Mbps) for a Router Output.
Example
declare const stack: Stack;
declare const mediaLiveInput: medialive.CfnInput;
const output = new RouterOutput(stack, 'MediaLiveOutput', {
routerOutputName: 'medialive-output',
maximumBitrate: Bitrate.mbps(15),
routingScope: RoutingScope.GLOBAL,
tier: RouterOutputTier.OUTPUT_50,
configuration: RouterOutputConfiguration.mediaLiveInput({
mediaLiveInputArn: mediaLiveInput.attrArn,
mediaLivePipelineId: MediaLivePipeline.PIPELINE_0,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The tier string value. |
| static OUTPUT_100 | Router | Up to 100 Mbps. |
| static OUTPUT_20 | Router | Up to 20 Mbps. |
| static OUTPUT_50 | Router | Up to 50 Mbps. |
value
Type:
string
The tier string value.
static OUTPUT_100
Type:
Router
Up to 100 Mbps.
static OUTPUT_20
Type:
Router
Up to 20 Mbps.
static OUTPUT_50
Type:
Router
Up to 50 Mbps.
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): RouterOutputTier
Parameters
- value
stringโ The tier string value.
Returns
Use a custom tier value.

.NET
Go
Java
Python
TypeScript (