class InputLossImageType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputLossImageType |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputLossImageType |
Java | software.amazon.awscdk.services.medialive.alpha.InputLossImageType |
Python | aws_cdk.aws_medialive_alpha.InputLossImageType |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputLossImageType |
The image MediaLive substitutes into the output on input loss.
Example
declare const slateBucket: s3.IBucket;
const inputLoss: medialive.InputLossBehavior = {
blackFrame: Duration.seconds(1),
repeatFrame: Duration.seconds(5),
imageType: medialive.InputLossImageType.SLATE,
imageSlate: medialive.FileLocation.fromBucket(slateBucket, 'slates/offline.png'),
};
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static COLOR | Input | Substitute a solid color. |
| static SLATE | Input | Substitute a slate image. |
value
Type:
string
The underlying string value passed to CloudFormation.
static COLOR
Type:
Input
Substitute a solid color.
static SLATE
Type:
Input
Substitute a slate image.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): InputLossImageType
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (