interface SubtitlingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElementalInference.CfnFeedPropsMixin.SubtitlingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselementalinference#CfnFeedPropsMixin_SubtitlingConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elementalinference.CfnFeedPropsMixin.SubtitlingConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_elementalinference.CfnFeedPropsMixin.SubtitlingConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elementalinference » CfnFeedPropsMixin » 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/cfn-property-mixins';
const subtitlingConfigProperty: elementalinference.CfnFeedPropsMixin.SubtitlingConfigProperty = {
aspectRatio: {
height: 123,
width: 123,
},
dictionary: 'dictionary',
language: 'language',
profanityFilter: 'profanityFilter',
};
Properties
| Name | Type | Description |
|---|---|---|
| aspect | IResolvable | Aspect | |
| dictionary? | string | |
| language? | string | |
| profanity | string |
aspectRatio?
Type:
IResolvable | Aspect
(optional)
dictionary?
Type:
string
(optional)
language?
Type:
string
(optional)
profanityFilter?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript