Interface CfnFeedPropsMixin.GetOutputProperty

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

@Stability(Stable) public static interface CfnFeedPropsMixin.GetOutputProperty 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.cfnpropertymixins.services.elementalinference.*;
 Object cropping;
 GetOutputProperty getOutputProperty = GetOutputProperty.builder()
         .description("description")
         .name("name")
         .outputConfig(OutputConfigProperty.builder()
                 .clipping(ClippingConfigProperty.builder()
                         .callbackMetadata("callbackMetadata")
                         .build())
                 .cropping(cropping)
                 .build())
         .status("status")
         .build();
 

See Also: