GameSessionQueueAttributes
- class aws_cdk.aws_gamelift_alpha.GameSessionQueueAttributes(*, game_session_queue_arn=None, game_session_queue_name=None)
Bases:
object(experimental) A full specification of an gameSessionQueue that can be used to import it fluently into the CDK application.
- Parameters:
game_session_queue_arn (
Optional[str]) – (experimental) The ARN of the gameSessionQueue. At least one ofgameSessionQueueArnandgameSessionQueueNamemust be provided. Default: derived fromgameSessionQueueName.game_session_queue_name (
Optional[str]) – (experimental) The name of the gameSessionQueue. At least one ofgameSessionQueueNameandgameSessionQueueArnmust be provided. Default: derived fromgameSessionQueueArn.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_gamelift_alpha as gamelift_alpha game_session_queue_attributes = gamelift_alpha.GameSessionQueueAttributes( game_session_queue_arn="gameSessionQueueArn", game_session_queue_name="gameSessionQueueName" )
Attributes
- game_session_queue_arn
(experimental) The ARN of the gameSessionQueue.
At least one of
gameSessionQueueArnandgameSessionQueueNamemust be provided.- Default:
derived from
gameSessionQueueName.- Stability:
experimental
- game_session_queue_name
(experimental) The name of the gameSessionQueue.
At least one of
gameSessionQueueNameandgameSessionQueueArnmust be provided.- Default:
derived from
gameSessionQueueArn.- Stability:
experimental