Interface BatchAddClusterNodesError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchAddClusterNodesError.Builder,BatchAddClusterNodesError>,SdkBuilder<BatchAddClusterNodesError.Builder,BatchAddClusterNodesError>,SdkPojo
- Enclosing class:
- BatchAddClusterNodesError
@Mutable @NotThreadSafe public static interface BatchAddClusterNodesError.Builder extends SdkPojo, CopyableBuilder<BatchAddClusterNodesError.Builder,BatchAddClusterNodesError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchAddClusterNodesError.BuildererrorCode(String errorCode)The error code associated with the failure.BatchAddClusterNodesError.BuildererrorCode(BatchAddClusterNodesErrorCode errorCode)The error code associated with the failure.BatchAddClusterNodesError.BuilderfailedCount(Integer failedCount)The number of nodes that failed to be added to the specified instance group.BatchAddClusterNodesError.BuilderinstanceGroupName(String instanceGroupName)The name of the instance group for which the error occurred.BatchAddClusterNodesError.Buildermessage(String message)A descriptive message providing additional details about the error.-
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
-
instanceGroupName
BatchAddClusterNodesError.Builder instanceGroupName(String instanceGroupName)
The name of the instance group for which the error occurred.
- Parameters:
instanceGroupName- The name of the instance group for which the error occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchAddClusterNodesError.Builder errorCode(String errorCode)
The error code associated with the failure. Possible values include
InstanceGroupNotFoundandInvalidInstanceGroupState.- Parameters:
errorCode- The error code associated with the failure. Possible values includeInstanceGroupNotFoundandInvalidInstanceGroupState.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchAddClusterNodesErrorCode,BatchAddClusterNodesErrorCode
-
errorCode
BatchAddClusterNodesError.Builder errorCode(BatchAddClusterNodesErrorCode errorCode)
The error code associated with the failure. Possible values include
InstanceGroupNotFoundandInvalidInstanceGroupState.- Parameters:
errorCode- The error code associated with the failure. Possible values includeInstanceGroupNotFoundandInvalidInstanceGroupState.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BatchAddClusterNodesErrorCode,BatchAddClusterNodesErrorCode
-
failedCount
BatchAddClusterNodesError.Builder failedCount(Integer failedCount)
The number of nodes that failed to be added to the specified instance group.
- Parameters:
failedCount- The number of nodes that failed to be added to the specified instance group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
BatchAddClusterNodesError.Builder message(String message)
A descriptive message providing additional details about the error.
- Parameters:
message- A descriptive message providing additional details about the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-