class SourceProtocol
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SourceProtocol |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SourceProtocol |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SourceProtocol |
Python | aws_cdk.aws_mediaconnect_alpha.SourceProtocol |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SourceProtocol |
Protocol Options for Sources.
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 sourceProtocol = mediaconnect_alpha.SourceProtocol.CDI;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The source protocol string value. |
| static CDI | Source | Options for CDI. |
| static JPEGXS | Source | Options for 2110. |
| static NDI_SPEED_HQ | Source | Options for NDI (SpeedHQ). |
| static RIST | Source | Options for RIST. |
| static RTP | Source | Options for RTP. |
| static RTP_FEC | Source | Options for RTP-FEC. |
| static SRT_CALLER | Source | Options for SRT Caller. |
| static SRT_LISTENER | Source | Options for SRT Listener. |
| static ZIXI_PUSH | Source | Options for Zixi Push. |
value
Type:
string
The source protocol string value.
static CDI
Type:
Source
Options for CDI.
static JPEGXS
Type:
Source
Options for 2110.
static NDI_SPEED_HQ
Type:
Source
Options for NDI (SpeedHQ).
static RIST
Type:
Source
Options for RIST.
static RTP
Type:
Source
Options for RTP.
static RTP_FEC
Type:
Source
Options for RTP-FEC.
static SRT_CALLER
Type:
Source
Options for SRT Caller.
static SRT_LISTENER
Type:
Source
Options for SRT Listener.
static ZIXI_PUSH
Type:
Source
Options for Zixi Push.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom source protocol value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): SourceProtocol
Parameters
- value
stringโ The source protocol string value.
Returns
Use a custom source protocol value.

.NET
Go
Java
Python
TypeScript (