Interface CfnFeed.OutputConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFeed.OutputConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFeed
@Stability(Stable)
public static interface CfnFeed.OutputConfigProperty
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.*;
Object cropping;
OutputConfigProperty outputConfigProperty = OutputConfigProperty.builder()
.clipping(ClippingConfigProperty.builder()
.callbackMetadata("callbackMetadata")
.build())
.cropping(cropping)
.subtitling(SubtitlingConfigProperty.builder()
.language("language")
// the properties below are optional
.aspectRatio(AspectRatioProperty.builder()
.height(123)
.width(123)
.build())
.dictionary("dictionary")
.profanityFilter("profanityFilter")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeed.OutputConfigPropertystatic final classAn implementation forCfnFeed.OutputConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnFeed.ClippingConfigPropertydefault Objectdefault ObjectReturns union: eitherIResolvableorCfnFeed.SubtitlingConfigPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClipping
Returns union: eitherIResolvableorCfnFeed.ClippingConfigProperty- See Also:
-
getCropping
- See Also:
-
getSubtitling
Returns union: eitherIResolvableorCfnFeed.SubtitlingConfigProperty- See Also:
-
builder
-