class UdpInputLossAction
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.UdpInputLossAction |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#UdpInputLossAction |
Java | software.amazon.awscdk.services.medialive.alpha.UdpInputLossAction |
Python | aws_cdk.aws_medialive_alpha.UdpInputLossAction |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป UdpInputLossAction |
UDP input loss action.
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 udpInputLossAction = medialive_alpha.UdpInputLossAction.DROP_PROGRAM;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static DROP_PROGRAM | Udp | Drop the program from the transport stream. |
| static DROP_TS | Udp | Drop the entire transport stream. |
| static EMIT_PROGRAM | Udp | Continue emitting with substitute frames. |
value
Type:
string
The underlying string value passed to CloudFormation.
static DROP_PROGRAM
Type:
Udp
Drop the program from the transport stream.
static DROP_TS
Type:
Udp
Drop the entire transport stream.
static EMIT_PROGRAM
Type:
Udp
Continue emitting with substitute frames.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): UdpInputLossAction
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (