Class: Aws::GameLift::Types::GameSessionQueueDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GameSessionQueueDestination
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Note:
When making an API call, you may pass GameSessionQueueDestination data as a hash:
{
destination_arn: "ArnStringModel",
}
Fleet designated in a game session queue. Requests for new game sessions in the queue are fulfilled by starting a new game session on any destination that is configured for a queue.
CreateGameSessionQueue
DescribeGameSessionQueues
UpdateGameSessionQueue
DeleteGameSessionQueue
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_arn ⇒ String
The Amazon Resource Name (ARN) that is assigned to fleet or fleet alias.
Instance Attribute Details
#destination_arn ⇒ String
The Amazon Resource Name (ARN) that is assigned to fleet or fleet alias. ARNs, which include a fleet ID or alias ID and a Region name, provide a unique identifier across all Regions.
5275 5276 5277 5278 5279 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5275 class GameSessionQueueDestination < Struct.new( :destination_arn) SENSITIVE = [] include Aws::Structure end |