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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.VideoSelectorSettingsPropertystatic final classAn implementation forCfnChannelPropsMixin.VideoSelectorSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVideoSelectorPid
Used to extract video by PID.Returns union: either
IResolvableorCfnChannelPropsMixin.VideoSelectorPidProperty- See Also:
-
getVideoSelectorProgramId
Used to extract video by program ID.Returns union: either
IResolvableorCfnChannelPropsMixin.VideoSelectorProgramIdProperty- See Also:
-
builder
-