Interface CfnFeed.SubtitlingConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeed.SubtitlingConfigProperty.Jsii$Proxy
Enclosing class:
CfnFeed

@Stability(Stable) public static interface CfnFeed.SubtitlingConfigProperty extends software.amazon.jsii.JsiiSerializable
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.elementalinference.*;
 SubtitlingConfigProperty subtitlingConfigProperty = SubtitlingConfigProperty.builder()
         .language("language")
         // the properties below are optional
         .aspectRatio(AspectRatioProperty.builder()
                 .height(123)
                 .width(123)
                 .build())
         .dictionary("dictionary")
         .profanityFilter("profanityFilter")
         .build();
 

See Also: