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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeed.GetOutputPropertystatic final classAn implementation forCfnFeed.GetOutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()Returns union: eitherIResolvableorCfnFeed.OutputConfigPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getOutputConfig
Returns union: eitherIResolvableorCfnFeed.OutputConfigProperty- See Also:
-
getStatus
- See Also:
-
getDescription
- See Also:
-
builder
- Returns:
- a
CfnFeed.GetOutputProperty.BuilderofCfnFeed.GetOutputProperty
-