Interface CfnChannel.CaptionSelectorSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.CaptionSelectorSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.CaptionSelectorSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Captions Selector Settings.
The parent of this entity is CaptionSelector.
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.*; CaptionSelectorSettingsProperty captionSelectorSettingsProperty = CaptionSelectorSettingsProperty.builder() .ancillarySourceSettings(AncillarySourceSettingsProperty.builder() .sourceAncillaryChannelNumber(123) .build()) .aribSourceSettings(AribSourceSettingsProperty.builder().build()) .dvbSubSourceSettings(DvbSubSourceSettingsProperty.builder() .ocrLanguage("ocrLanguage") .pid(123) .build()) .embeddedSourceSettings(EmbeddedSourceSettingsProperty.builder() .convert608To708("convert608To708") .scte20Detection("scte20Detection") .source608ChannelNumber(123) .source608TrackNumber(123) .build()) .scte20SourceSettings(Scte20SourceSettingsProperty.builder() .convert608To708("convert608To708") .source608ChannelNumber(123) .build()) .scte27SourceSettings(Scte27SourceSettingsProperty.builder() .ocrLanguage("ocrLanguage") .pid(123) .build()) .teletextSourceSettings(TeletextSourceSettingsProperty.builder() .outputRectangle(CaptionRectangleProperty.builder() .height(123) .leftOffset(123) .topOffset(123) .width(123) .build()) .pageNumber("pageNumber") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.CaptionSelectorSettingsProperty
static final class
An implementation forCfnChannel.CaptionSelectorSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Information about the ancillary captions to extract from the input.default Object
Information about the ARIB captions to extract from the input.default Object
Information about the DVB Sub captions to extract from the input.default Object
Information about the embedded captions to extract from the input.default Object
Information about the SCTE-20 captions to extract from the input.default Object
Information about the SCTE-27 captions to extract from the input.default Object
Information about the Teletext captions to extract from the input.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAncillarySourceSettings
Information about the ancillary captions to extract from the input.- See Also:
-
getAribSourceSettings
Information about the ARIB captions to extract from the input.- See Also:
-
getDvbSubSourceSettings
Information about the DVB Sub captions to extract from the input.- See Also:
-
getEmbeddedSourceSettings
Information about the embedded captions to extract from the input.- See Also:
-
getScte20SourceSettings
Information about the SCTE-20 captions to extract from the input.- See Also:
-
getScte27SourceSettings
Information about the SCTE-27 captions to extract from the input.- See Also:
-
getTeletextSourceSettings
Information about the Teletext captions to extract from the input.- See Also:
-
builder
-