Interface OutpostConfigRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutpostConfigRequest.Builder,OutpostConfigRequest>,SdkBuilder<OutpostConfigRequest.Builder,OutpostConfigRequest>,SdkPojo
- Enclosing class:
- OutpostConfigRequest
public static interface OutpostConfigRequest.Builder extends SdkPojo, CopyableBuilder<OutpostConfigRequest.Builder,OutpostConfigRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description OutpostConfigRequest.BuildercontrolPlaneInstanceType(String controlPlaneInstanceType)The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts.default OutpostConfigRequest.BuildercontrolPlanePlacement(Consumer<ControlPlanePlacementRequest.Builder> controlPlanePlacement)An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost.OutpostConfigRequest.BuildercontrolPlanePlacement(ControlPlanePlacementRequest controlPlanePlacement)An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost.OutpostConfigRequest.BuilderoutpostArns(String... outpostArns)The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts.OutpostConfigRequest.BuilderoutpostArns(Collection<String> outpostArns)The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts.-
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
-
outpostArns
OutpostConfigRequest.Builder outpostArns(Collection<String> outpostArns)
The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts. Only a single Outpost ARN is supported.
- Parameters:
outpostArns- The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts. Only a single Outpost ARN is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outpostArns
OutpostConfigRequest.Builder outpostArns(String... outpostArns)
The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts. Only a single Outpost ARN is supported.
- Parameters:
outpostArns- The ARN of the Outpost that you want to use for your local Amazon EKS cluster on Outposts. Only a single Outpost ARN is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlPlaneInstanceType
OutpostConfigRequest.Builder controlPlaneInstanceType(String controlPlaneInstanceType)
The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts. Choose an instance type based on the number of nodes that your cluster will have. For more information, see Capacity considerations in the Amazon EKS User Guide.
The instance type that you specify is used for all Kubernetes control plane instances. The instance type can't be changed after cluster creation. The control plane is not automatically scaled by Amazon EKS.
- Parameters:
controlPlaneInstanceType- The Amazon EC2 instance type that you want to use for your local Amazon EKS cluster on Outposts. Choose an instance type based on the number of nodes that your cluster will have. For more information, see Capacity considerations in the Amazon EKS User Guide.The instance type that you specify is used for all Kubernetes control plane instances. The instance type can't be changed after cluster creation. The control plane is not automatically scaled by Amazon EKS.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlPlanePlacement
OutpostConfigRequest.Builder controlPlanePlacement(ControlPlanePlacementRequest controlPlanePlacement)
An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.
- Parameters:
controlPlanePlacement- An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
controlPlanePlacement
default OutpostConfigRequest.Builder controlPlanePlacement(Consumer<ControlPlanePlacementRequest.Builder> controlPlanePlacement)
An object representing the placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see Capacity considerations in the Amazon EKS User Guide.
This is a convenience method that creates an instance of theControlPlanePlacementRequest.Builderavoiding the need to create one manually viaControlPlanePlacementRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontrolPlanePlacement(ControlPlanePlacementRequest).- Parameters:
controlPlanePlacement- a consumer that will call methods onControlPlanePlacementRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
controlPlanePlacement(ControlPlanePlacementRequest)
-
-