interface CaptionSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.CaptionSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_CaptionSelectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.CaptionSelectorProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.CaptionSelectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » CaptionSelectorProperty |
Information about one caption to extract from the input.
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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const captionSelectorProperty: medialive_mixins.CfnChannelPropsMixin.CaptionSelectorProperty = {
languageCode: 'languageCode',
name: 'name',
selectorSettings: {
ancillarySourceSettings: {
sourceAncillaryChannelNumber: 123,
},
aribSourceSettings: { },
dvbSubSourceSettings: {
ocrLanguage: 'ocrLanguage',
pid: 123,
},
embeddedSourceSettings: {
convert608To708: 'convert608To708',
scte20Detection: 'scte20Detection',
source608ChannelNumber: 123,
source608TrackNumber: 123,
},
scte20SourceSettings: {
convert608To708: 'convert608To708',
source608ChannelNumber: 123,
},
scte27SourceSettings: {
ocrLanguage: 'ocrLanguage',
pid: 123,
},
teletextSourceSettings: {
outputRectangle: {
height: 123,
leftOffset: 123,
topOffset: 123,
width: 123,
},
pageNumber: 'pageNumber',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string | When specified, this field indicates the three-letter language code of the captions track to extract from the source. |
| name? | string | The name identifier for a captions selector. |
| selector | IResolvable | Caption | Information about the specific audio to extract from the input. |
languageCode?
Type:
string
(optional)
When specified, this field indicates the three-letter language code of the captions track to extract from the source.
name?
Type:
string
(optional)
The name identifier for a captions selector.
This name is used to associate this captions selector with one or more captions descriptions. Names must be unique within a channel.
selectorSettings?
Type:
IResolvable | Caption
(optional)
Information about the specific audio to extract from the input.

.NET
Go
Java
Python
TypeScript