interface SubtitlingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElementalInference.CfnFeed.SubtitlingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselementalinference#CfnFeed_SubtitlingConfigProperty |
Java | software.amazon.awscdk.services.elementalinference.CfnFeed.SubtitlingConfigProperty |
Python | aws_cdk.aws_elementalinference.CfnFeed.SubtitlingConfigProperty |
TypeScript | aws-cdk-lib » aws_elementalinference » CfnFeed » SubtitlingConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as elementalinference } from 'aws-cdk-lib';
const subtitlingConfigProperty: elementalinference.CfnFeed.SubtitlingConfigProperty = {
language: 'language',
// the properties below are optional
aspectRatio: {
height: 123,
width: 123,
},
dictionary: 'dictionary',
profanityFilter: 'profanityFilter',
};
Properties
| Name | Type | Description |
|---|---|---|
| language | string | |
| aspect | IResolvable | Aspect | |
| dictionary? | string | |
| profanity | string |
language
Type:
string
aspectRatio?
Type:
IResolvable | Aspect
(optional)
dictionary?
Type:
string
(optional)
profanityFilter?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript