Interface NodegroupResources.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodegroupResources.Builder,NodegroupResources>,SdkBuilder<NodegroupResources.Builder,NodegroupResources>,SdkPojo
- Enclosing class:
- NodegroupResources
public static interface NodegroupResources.Builder extends SdkPojo, CopyableBuilder<NodegroupResources.Builder,NodegroupResources>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodegroupResources.BuilderautoScalingGroups(Collection<AutoScalingGroup> autoScalingGroups)The Auto Scaling groups associated with the node group.NodegroupResources.BuilderautoScalingGroups(Consumer<AutoScalingGroup.Builder>... autoScalingGroups)The Auto Scaling groups associated with the node group.NodegroupResources.BuilderautoScalingGroups(AutoScalingGroup... autoScalingGroups)The Auto Scaling groups associated with the node group.NodegroupResources.BuilderremoteAccessSecurityGroup(String remoteAccessSecurityGroup)The remote access security group 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
autoScalingGroups
NodegroupResources.Builder autoScalingGroups(Collection<AutoScalingGroup> autoScalingGroups)
The Auto Scaling groups associated with the node group.
- Parameters:
autoScalingGroups- The Auto Scaling groups associated with the node group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoScalingGroups
NodegroupResources.Builder autoScalingGroups(AutoScalingGroup... autoScalingGroups)
The Auto Scaling groups associated with the node group.
- Parameters:
autoScalingGroups- The Auto Scaling groups associated with the node group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoScalingGroups
NodegroupResources.Builder autoScalingGroups(Consumer<AutoScalingGroup.Builder>... autoScalingGroups)
The Auto Scaling groups associated with the node group.
This is a convenience method that creates an instance of theAutoScalingGroup.Builderavoiding the need to create one manually viaAutoScalingGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#autoScalingGroups(List.) - Parameters:
autoScalingGroups- a consumer that will call methods onAutoScalingGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#autoScalingGroups(java.util.Collection)
-
remoteAccessSecurityGroup
NodegroupResources.Builder remoteAccessSecurityGroup(String remoteAccessSecurityGroup)
The remote access security group associated with the node group. This security group controls SSH access to the nodes.
- Parameters:
remoteAccessSecurityGroup- The remote access security group associated with the node group. This security group controls SSH access to the nodes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-