Interface MismatchedNodeOutputTypeFlowValidationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MismatchedNodeOutputTypeFlowValidationDetails.Builder,MismatchedNodeOutputTypeFlowValidationDetails>,SdkBuilder<MismatchedNodeOutputTypeFlowValidationDetails.Builder,MismatchedNodeOutputTypeFlowValidationDetails>,SdkPojo
- Enclosing class:
- MismatchedNodeOutputTypeFlowValidationDetails
@Mutable @NotThreadSafe public static interface MismatchedNodeOutputTypeFlowValidationDetails.Builder extends SdkPojo, CopyableBuilder<MismatchedNodeOutputTypeFlowValidationDetails.Builder,MismatchedNodeOutputTypeFlowValidationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MismatchedNodeOutputTypeFlowValidationDetails.BuilderexpectedType(String expectedType)The expected data type for the node output.MismatchedNodeOutputTypeFlowValidationDetails.BuilderexpectedType(FlowNodeIODataType expectedType)The expected data type for the node output.MismatchedNodeOutputTypeFlowValidationDetails.Buildernode(String node)The name of the node containing the output with the mismatched data type.MismatchedNodeOutputTypeFlowValidationDetails.Builderoutput(String output)The name of the output with the mismatched data type.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
node
MismatchedNodeOutputTypeFlowValidationDetails.Builder node(String node)
The name of the node containing the output with the mismatched data type.
- Parameters:
node- The name of the node containing the output with the mismatched data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
MismatchedNodeOutputTypeFlowValidationDetails.Builder output(String output)
The name of the output with the mismatched data type.
- Parameters:
output- The name of the output with the mismatched data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expectedType
MismatchedNodeOutputTypeFlowValidationDetails.Builder expectedType(String expectedType)
The expected data type for the node output.
- Parameters:
expectedType- The expected data type for the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
expectedType
MismatchedNodeOutputTypeFlowValidationDetails.Builder expectedType(FlowNodeIODataType expectedType)
The expected data type for the node output.
- Parameters:
expectedType- The expected data type for the node output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
-