class RoutingScope
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RoutingScope |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RoutingScope |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RoutingScope |
Python | aws_cdk.aws_mediaconnect_alpha.RoutingScope |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RoutingScope |
Routing scope for the Router Input.
Example
declare const stack: Stack;
declare const networkInterface: RouterNetworkInterface;
const output = new RouterOutput(stack, 'SrtOutput', {
routerOutputName: 'srt-output',
maximumBitrate: Bitrate.mbps(10),
routingScope: RoutingScope.REGIONAL,
// tier defaults to RouterOutputTier.OUTPUT_20 (lowest cost)
configuration: RouterOutputConfiguration.standard({
protocol: RouterOutputProtocol.srtListener({
port: 9001,
minimumLatency: Duration.millis(200),
}),
networkInterface: networkInterface,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The routing scope string value. |
| static GLOBAL | Routing | Route traffic globally across AWS regions. |
| static REGIONAL | Routing | Route traffic within the same AWS region. |
value
Type:
string
The routing scope string value.
static GLOBAL
Type:
Routing
Route traffic globally across AWS regions.
static REGIONAL
Type:
Routing
Route traffic within the same AWS region.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom routing scope value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): RoutingScope
Parameters
- value
stringโ The routing scope string value.
Returns
Use a custom routing scope value.

.NET
Go
Java
Python
TypeScript (