Interface CfnChannel.VideoSelectorSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.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.services.medialive.*;
 VideoSelectorSettingsProperty videoSelectorSettingsProperty = VideoSelectorSettingsProperty.builder()
         .videoSelectorPid(VideoSelectorPidProperty.builder()
                 .pid(123)
                 .build())
         .videoSelectorProgramId(VideoSelectorProgramIdProperty.builder()
                 .programId(123)
                 .build())
         .build();
 

See Also: