Class: Aws::GameLift::Types::ClaimFilterOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ClaimFilterOption
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
This data type is used with the Amazon GameLift FleetIQ and game server groups.
Filters which game servers may be claimed when calling
ClaimGameServer
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_statuses ⇒ Array<String>
List of instance statuses that game servers may be claimed on.
Instance Attribute Details
#instance_statuses ⇒ Array<String>
List of instance statuses that game servers may be claimed on. If
provided, the list must contain the ACTIVE
status.
363 364 365 366 367 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 363 class ClaimFilterOption < Struct.new( :instance_statuses) SENSITIVE = [] include Aws::Structure end |