Interface CfnFlowVersion.FlowNodeOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowVersion.FlowNodeOutputProperty.Jsii$Proxy
- Enclosing class:
CfnFlowVersion
@Stability(Stable)
public static interface CfnFlowVersion.FlowNodeOutputProperty
extends software.amazon.jsii.JsiiSerializable
Contains configurations for an output from a node.
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.bedrock.*; FlowNodeOutputProperty flowNodeOutputProperty = FlowNodeOutputProperty.builder() .name("name") .type("type") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlowVersion.FlowNodeOutputProperty
static final class
An implementation forCfnFlowVersion.FlowNodeOutputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the output that you can reference.- See Also:
-
getType
The data type of the output.If the output doesn't match this type at runtime, a validation error will be thrown.
- See Also:
-
builder
-