Enum PlacementGroupSpreadLevel
java.lang.Object
java.lang.Enum<PlacementGroupSpreadLevel>
software.amazon.awscdk.services.ec2.PlacementGroupSpreadLevel
- All Implemented Interfaces:
Serializable
,Comparable<PlacementGroupSpreadLevel>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:30.145Z")
@Stability(Stable)
public enum PlacementGroupSpreadLevel
extends Enum<PlacementGroupSpreadLevel>
Determines how this placement group spreads instances.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic PlacementGroupSpreadLevel
Returns the enum constant of this type with the specified name.static PlacementGroupSpreadLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HOST
Host spread level placement groups are only available with AWS Outposts.For host spread level placement groups, there are no restrictions for running instances per Outposts.
- See Also:
-
RACK
Each instance is launched on a separate rack.Each has its own network and power source. A rack spread placement group can span multiple Availability Zones in the same Region. For rack spread level placement groups, you can have a maximum of seven running instances per Availability Zone per group.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-