Class PlacementGroup.Builder

java.lang.Object
software.amazon.awscdk.services.ec2.PlacementGroup.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<PlacementGroup>
Enclosing class:
PlacementGroup

@Stability(Stable) public static final class PlacementGroup.Builder extends Object implements software.amazon.jsii.Builder<PlacementGroup>
A fluent builder for PlacementGroup.
  • Method Details

    • create

      @Stability(Stable) public static PlacementGroup.Builder create(software.constructs.Construct scope, String id)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      Returns:
      a new instance of PlacementGroup.Builder.
    • partitions

      @Stability(Stable) public PlacementGroup.Builder partitions(Number partitions)
      The number of partitions.

      Valid only when Strategy is set to partition.

      Default: 0

      Parameters:
      partitions - The number of partitions. This parameter is required.
      Returns:
      this
    • placementGroupName

      @Stability(Stable) public PlacementGroup.Builder placementGroupName(String placementGroupName)
      the name of this placement group.

      Default: - generated by CFN

      Parameters:
      placementGroupName - the name of this placement group. This parameter is required.
      Returns:
      this
    • spreadLevel

      @Stability(Stable) public PlacementGroup.Builder spreadLevel(PlacementGroupSpreadLevel spreadLevel)
      Places instances on distinct hardware.

      Spread placement groups are recommended for applications that have a small number of critical instances that should be kept separate from each other. Launching instances in a spread level placement group reduces the risk of simultaneous failures that might occur when instances share the same equipment. Spread level placement groups provide access to distinct hardware, and are therefore suitable for mixing instance types or launching instances over time. If you start or launch an instance in a spread placement group and there is insufficient unique hardware to fulfill the request, the request fails. Amazon EC2 makes more distinct hardware available over time, so you can try your request again later. Placement groups can spread instances across racks or hosts. You can use host level spread placement groups only with AWS Outposts.

      Default: - no spread level

      Parameters:
      spreadLevel - Places instances on distinct hardware. This parameter is required.
      Returns:
      this
    • strategy

      @Stability(Stable) public PlacementGroup.Builder strategy(PlacementGroupStrategy strategy)
      Which strategy to use when launching instances.

      Default: - `PlacementGroupStrategy.PARTITION` if `partitions` is defined, `CLUSTER` otherwise

      Parameters:
      strategy - Which strategy to use when launching instances. This parameter is required.
      Returns:
      this
    • build

      @Stability(Stable) public PlacementGroup build()
      Specified by:
      build in interface software.amazon.jsii.Builder<PlacementGroup>
      Returns:
      a newly built instance of PlacementGroup.