Interface CfnChannel.AvailBlankingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.AvailBlankingProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.AvailBlankingProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
 AvailBlankingProperty availBlankingProperty = AvailBlankingProperty.builder()
         .availBlankingImage(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .state("state")
         .build();
 

See Also: