Interface CfnChannel.BlackoutSlateProperty

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

@Stability(Stable) public static interface CfnChannel.BlackoutSlateProperty extends software.amazon.jsii.JsiiSerializable
The settings for a blackout slate.

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.*;
 BlackoutSlateProperty blackoutSlateProperty = BlackoutSlateProperty.builder()
         .blackoutSlateImage(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .networkEndBlackout("networkEndBlackout")
         .networkEndBlackoutImage(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .networkId("networkId")
         .state("state")
         .build();
 

See Also: