Interface CfnFeed.GetOutputProperty

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

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

See Also: