class SrtInputLossAction
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtInputLossAction |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtInputLossAction |
Java | software.amazon.awscdk.services.medialive.alpha.SrtInputLossAction |
Python | aws_cdk.aws_medialive_alpha.SrtInputLossAction |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtInputLossAction |
Behavior of last resort when input video is lost and no more backup inputs are available, for an SRT output group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const srtInputLossAction = medialive_alpha.SrtInputLossAction.DROP_PROGRAM;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static DROP_PROGRAM | Srt | Drop the program from the transport stream (replaced with null packets to meet bitrate). |
| static DROP_TS | Srt | Drop the entire transport stream. |
| static EMIT_PROGRAM | Srt | Continue emitting with repeat, black, or slate frames substituted for the absent video. |
value
Type:
string
The underlying string value passed to CloudFormation.
static DROP_PROGRAM
Type:
Srt
Drop the program from the transport stream (replaced with null packets to meet bitrate).
static DROP_TS
Type:
Srt
Drop the entire transport stream.
static EMIT_PROGRAM
Type:
Srt
Continue emitting with repeat, black, or slate frames substituted for the absent video.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): SrtInputLossAction
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (