class RouterOutputProtocolOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RouterOutputProtocolOptions |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RouterOutputProtocolOptions |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RouterOutputProtocolOptions |
Python | aws_cdk.aws_mediaconnect_alpha.RouterOutputProtocolOptions |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RouterOutputProtocolOptions |
Protocol options available for Router Output configurations.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const routerOutputProtocolOptions = mediaconnect_alpha.RouterOutputProtocolOptions.RIST;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The protocol string value. |
| static RIST | Router | Reliable Internet Stream Transport. |
| static RTP | Router | Real-time Transport Protocol. |
| static SRT_CALLER | Router | Secure Reliable Transport - Caller mode. |
| static SRT_LISTENER | Router | Secure Reliable Transport - Listener mode. |
value
Type:
string
The protocol string value.
static RIST
Type:
Router
Reliable Internet Stream Transport.
static RTP
Type:
Router
Real-time Transport Protocol.
static SRT_CALLER
Type:
Router
Secure Reliable Transport - Caller mode.
static SRT_LISTENER
Type:
Router
Secure Reliable Transport - Listener mode.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom protocol value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): RouterOutputProtocolOptions
Parameters
- value
stringโ The protocol string value.
Returns
Use a custom protocol value.

.NET
Go
Java
Python
TypeScript (