Enum DeleteOption
- All Implemented Interfaces:
Serializable
,Comparable<DeleteOption>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.109.0 (build c221850)",
date="2025-03-14T03:25:07.757Z")
@Stability(Experimental)
public enum DeleteOption
extends Enum<DeleteOption>
(experimental) The type of delete to perform.
To delete a game server group, specify the DeleteOption.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(experimental) Terminates the game server group, including all active game servers regardless of their utilization status, and the Amazon EC2 Auto Scaling group.(experimental) Does a safe delete of the game server group but retains the Amazon EC2 Auto Scaling group as is.(experimental) Terminates the game server group and Amazon EC2 Auto Scaling group only when it has no game servers that are in UTILIZED status. -
Method Summary
Modifier and TypeMethodDescriptionstatic DeleteOption
Returns the enum constant of this type with the specified name.static DeleteOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SAFE_DELETE
(experimental) Terminates the game server group and Amazon EC2 Auto Scaling group only when it has no game servers that are in UTILIZED status. -
FORCE_DELETE
(experimental) Terminates the game server group, including all active game servers regardless of their utilization status, and the Amazon EC2 Auto Scaling group. -
RETAIN
(experimental) Does a safe delete of the game server group but retains the Amazon EC2 Auto Scaling group as is.
-
-
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
-