Interface CfnChannel.VideoSelectorProperty

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

@Stability(Stable) public static interface CfnChannel.VideoSelectorProperty extends software.amazon.jsii.JsiiSerializable
Information about the video to extract from the input. An input can contain only one video selector.

The parent of this entity is InputSettings.

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.*;
 VideoSelectorProperty videoSelectorProperty = VideoSelectorProperty.builder()
         .colorSpace("colorSpace")
         .colorSpaceSettings(VideoSelectorColorSpaceSettingsProperty.builder()
                 .hdr10Settings(Hdr10SettingsProperty.builder()
                         .maxCll(123)
                         .maxFall(123)
                         .build())
                 .build())
         .colorSpaceUsage("colorSpaceUsage")
         .selectorSettings(VideoSelectorSettingsProperty.builder()
                 .videoSelectorPid(VideoSelectorPidProperty.builder()
                         .pid(123)
                         .build())
                 .videoSelectorProgramId(VideoSelectorProgramIdProperty.builder()
                         .programId(123)
                         .build())
                 .build())
         .build();
 

See Also: