Interface CfnChannelPropsMixin.VideoSelectorSettingsProperty

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

@Stability(Stable) public static interface CfnChannelPropsMixin.VideoSelectorSettingsProperty extends software.amazon.jsii.JsiiSerializable
Information about the video to extract from the input.

The parent of this entity is VideoSelector.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.medialive.*;
 VideoSelectorSettingsProperty videoSelectorSettingsProperty = VideoSelectorSettingsProperty.builder()
         .videoSelectorPid(VideoSelectorPidProperty.builder()
                 .pid(123)
                 .build())
         .videoSelectorProgramId(VideoSelectorProgramIdProperty.builder()
                 .programId(123)
                 .build())
         .build();
 

See Also: