Interface MismatchedNodeInputTypeFlowValidationDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MismatchedNodeInputTypeFlowValidationDetails.Builder,MismatchedNodeInputTypeFlowValidationDetails>,SdkBuilder<MismatchedNodeInputTypeFlowValidationDetails.Builder,MismatchedNodeInputTypeFlowValidationDetails>,SdkPojo
- Enclosing class:
- MismatchedNodeInputTypeFlowValidationDetails
@Mutable @NotThreadSafe public static interface MismatchedNodeInputTypeFlowValidationDetails.Builder extends SdkPojo, CopyableBuilder<MismatchedNodeInputTypeFlowValidationDetails.Builder,MismatchedNodeInputTypeFlowValidationDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MismatchedNodeInputTypeFlowValidationDetails.BuilderexpectedType(String expectedType)The expected data type for the node input.MismatchedNodeInputTypeFlowValidationDetails.BuilderexpectedType(FlowNodeIODataType expectedType)The expected data type for the node input.MismatchedNodeInputTypeFlowValidationDetails.Builderinput(String input)The name of the input with the mismatched data type.MismatchedNodeInputTypeFlowValidationDetails.Buildernode(String node)The name of the node containing the input 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
MismatchedNodeInputTypeFlowValidationDetails.Builder node(String node)
The name of the node containing the input with the mismatched data type.
- Parameters:
node- The name of the node containing the input with the mismatched data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
MismatchedNodeInputTypeFlowValidationDetails.Builder input(String input)
The name of the input with the mismatched data type.
- Parameters:
input- The name of the input with the mismatched data type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expectedType
MismatchedNodeInputTypeFlowValidationDetails.Builder expectedType(String expectedType)
The expected data type for the node input.
- Parameters:
expectedType- The expected data type for the node input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
expectedType
MismatchedNodeInputTypeFlowValidationDetails.Builder expectedType(FlowNodeIODataType expectedType)
The expected data type for the node input.
- Parameters:
expectedType- The expected data type for the node input.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowNodeIODataType,FlowNodeIODataType
-
-