interface AvailBlankingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.AvailBlankingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_AvailBlankingProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.AvailBlankingProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.AvailBlankingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » AvailBlankingProperty |
The configuration of ad avail blanking in the output.
The parent of this entity is EncoderSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const availBlankingProperty: medialive_mixins.CfnChannelPropsMixin.AvailBlankingProperty = {
availBlankingImage: {
passwordParam: 'passwordParam',
uri: 'uri',
username: 'username',
},
state: 'state',
};
Properties
| Name | Type | Description |
|---|---|---|
| avail | IResolvable | Input | The blanking image to be used. |
| state? | string | When set to enabled, the video, audio, and captions are blanked when insertion metadata is added. |
availBlankingImage?
Type:
IResolvable | Input
(optional)
The blanking image to be used.
Keep empty for solid black. Only .bmp and .png images are supported.
state?
Type:
string
(optional)
When set to enabled, the video, audio, and captions are blanked when insertion metadata is added.

.NET
Go
Java
Python
TypeScript