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 Details

    • 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 the ControlPlanePlacementRequest.Builder avoiding the need to create one manually via ControlPlanePlacementRequest.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to controlPlanePlacement(ControlPlanePlacementRequest).

      Parameters:
      controlPlanePlacement - a consumer that will call methods on ControlPlanePlacementRequest.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: