Interface NodegroupHealth.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodegroupHealth.Builder,NodegroupHealth>,SdkBuilder<NodegroupHealth.Builder,NodegroupHealth>,SdkPojo
- Enclosing class:
- NodegroupHealth
public static interface NodegroupHealth.Builder extends SdkPojo, CopyableBuilder<NodegroupHealth.Builder,NodegroupHealth>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodegroupHealth.Builderissues(Collection<Issue> issues)Any issues that are associated with the node group.NodegroupHealth.Builderissues(Consumer<Issue.Builder>... issues)Any issues that are associated with the node group.NodegroupHealth.Builderissues(Issue... issues)Any issues that are associated with the node group.-
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, sdkFields
-
-
-
-
Method Detail
-
issues
NodegroupHealth.Builder issues(Collection<Issue> issues)
Any issues that are associated with the node group.
- Parameters:
issues- Any issues that are associated with the node group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issues
NodegroupHealth.Builder issues(Issue... issues)
Any issues that are associated with the node group.
- Parameters:
issues- Any issues that are associated with the node group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issues
NodegroupHealth.Builder issues(Consumer<Issue.Builder>... issues)
Any issues that are associated with the node group.
This is a convenience method that creates an instance of theIssue.Builderavoiding the need to create one manually viaIssue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#issues(List.) - Parameters:
issues- a consumer that will call methods onIssue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#issues(java.util.Collection)
-
-