aws-cdk-lib.aws_medialive.CfnChannel.InputLossBehaviorProperty

interface InputLossBehaviorProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.InputLossBehaviorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_InputLossBehaviorProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.InputLossBehaviorProperty
Pythonaws_cdk.aws_medialive.CfnChannel.InputLossBehaviorProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » InputLossBehaviorProperty

The configuration of channel behavior when the input is lost.

The parent of this entity is GlobalConfiguration.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const inputLossBehaviorProperty: medialive.CfnChannel.InputLossBehaviorProperty = {
  blackFrameMsec: 123,
  inputLossImageColor: 'inputLossImageColor',
  inputLossImageSlate: {
    passwordParam: 'passwordParam',
    uri: 'uri',
    username: 'username',
  },
  inputLossImageType: 'inputLossImageType',
  repeatFrameMsec: 123,
};

Properties

NameTypeDescription
blackFrameMsec?numberOn input loss, the number of milliseconds to substitute black into the output before switching to the frame specified by inputLossImageType.
inputLossImageColor?stringWhen the input loss image type is "color," this field specifies the color to use.
inputLossImageSlate?IResolvable | InputLocationPropertyWhen the input loss image type is "slate," these fields specify the parameters for accessing the slate.
inputLossImageType?stringIndicates whether to substitute a solid color or a slate into the output after the input loss exceeds blackFrameMsec.
repeatFrameMsec?numberOn input loss, the number of milliseconds to repeat the previous picture before substituting black into the output.

blackFrameMsec?

Type: number (optional)

On input loss, the number of milliseconds to substitute black into the output before switching to the frame specified by inputLossImageType.

A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.


inputLossImageColor?

Type: string (optional)

When the input loss image type is "color," this field specifies the color to use.

Value: 6 hex characters that represent the values of RGB.


inputLossImageSlate?

Type: IResolvable | InputLocationProperty (optional)

When the input loss image type is "slate," these fields specify the parameters for accessing the slate.


inputLossImageType?

Type: string (optional)

Indicates whether to substitute a solid color or a slate into the output after the input loss exceeds blackFrameMsec.


repeatFrameMsec?

Type: number (optional)

On input loss, the number of milliseconds to repeat the previous picture before substituting black into the output.

A value x, where 0 <= x <= 1,000,000 and a value of 1,000,000, is interpreted as infinite.