Class: Aws::GameLift::Types::DeleteGameServerGroupInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#delete_optionString

The type of delete to perform. Options include the following:

  • SAFE_DELETE – (default) 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 – Terminates the game server group, including all active game servers regardless of their utilization status, and the Amazon EC2 Auto Scaling group.

  • RETAIN – Does a safe delete of the game server group but retains the Amazon EC2 Auto Scaling group as is.

Returns:

  • (String)


2034
2035
2036
2037
2038
2039
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2034

class DeleteGameServerGroupInput < Struct.new(
  :game_server_group_name,
  :delete_option)
  SENSITIVE = []
  include Aws::Structure
end

#game_server_group_nameString

A unique identifier for the game server group. Use either the name or ARN value.

Returns:

  • (String)


2034
2035
2036
2037
2038
2039
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 2034

class DeleteGameServerGroupInput < Struct.new(
  :game_server_group_name,
  :delete_option)
  SENSITIVE = []
  include Aws::Structure
end