java.lang.Object
java.lang.Enum<DeleteOption>
software.amazon.awscdk.services.gamelift.alpha.DeleteOption
All Implemented Interfaces:
Serializable, Comparable<DeleteOption>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:25.520Z") @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 Constants
    Enum Constant
    Description
    (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 Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    static DeleteOption[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SAFE_DELETE

      @Stability(Experimental) public static final DeleteOption 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

      @Stability(Experimental) public static final DeleteOption 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

      @Stability(Experimental) public static final DeleteOption RETAIN
      (experimental) Does a safe delete of the game server group but retains the Amazon EC2 Auto Scaling group as is.
  • Method Details

    • values

      public static DeleteOption[] 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

      public static DeleteOption valueOf(String name)
      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 name
      NullPointerException - if the argument is null