Interface NodeSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodeSummary.Builder,NodeSummary>,SdkBuilder<NodeSummary.Builder,NodeSummary>,SdkPojo
- Enclosing class:
- NodeSummary
public static interface NodeSummary.Builder extends SdkPojo, CopyableBuilder<NodeSummary.Builder,NodeSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodeSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the node.NodeSummary.BuilderavailabilityZone(String availabilityZone)The Availability Zone in which the node exists.NodeSummary.BuildercreationDate(Instant creationDate)The date and time that the node was created.NodeSummary.Builderid(String id)The unique identifier of the node.NodeSummary.BuilderinstanceType(String instanceType)The EC2 instance type for the node.NodeSummary.Builderstatus(String status)The status of the node.NodeSummary.Builderstatus(NodeStatus status)The status of the node.-
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
-
id
NodeSummary.Builder id(String id)
The unique identifier of the node.
- Parameters:
id- The unique identifier of the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
NodeSummary.Builder status(String status)
The status of the node.
- Parameters:
status- The status of the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeStatus,NodeStatus
-
status
NodeSummary.Builder status(NodeStatus status)
The status of the node.
- Parameters:
status- The status of the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
NodeStatus,NodeStatus
-
creationDate
NodeSummary.Builder creationDate(Instant creationDate)
The date and time that the node was created.
- Parameters:
creationDate- The date and time that the node was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
availabilityZone
NodeSummary.Builder availabilityZone(String availabilityZone)
The Availability Zone in which the node exists.
- Parameters:
availabilityZone- The Availability Zone in which the node exists.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instanceType
NodeSummary.Builder instanceType(String instanceType)
The EC2 instance type for the node.
- Parameters:
instanceType- The EC2 instance type for the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
NodeSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
- Parameters:
arn- The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-