Interface CfnChannel.InputLossBehaviorProperty

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

@Stability(Stable) public static interface CfnChannel.InputLossBehaviorProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
 InputLossBehaviorProperty inputLossBehaviorProperty = InputLossBehaviorProperty.builder()
         .blackFrameMsec(123)
         .inputLossImageColor("inputLossImageColor")
         .inputLossImageSlate(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .inputLossImageType("inputLossImageType")
         .repeatFrameMsec(123)
         .build();
 

See Also: