interface AvailBlankingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.AvailBlankingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_AvailBlankingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.AvailBlankingProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.AvailBlankingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » 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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const availBlankingProperty: medialive.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