Examples#
Auto-generated documentation for GameLift type annotations stubs module mypy-boto3-gamelift.
Client#
Implicit type annotations#
Can be used with boto3-stubs[gamelift]
package installed.
Write your GameLift
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# GameLiftClient usage example
from boto3.session import Session
session = Session()
client = session.client("gamelift") # (1)
result = client.claim_game_server() # (2)
- client: GameLiftClient
- result: ClaimGameServerOutputTypeDef
Paginator usage example#
# DescribeFleetAttributesPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("gamelift") # (1)
paginator = client.get_paginator("describe_fleet_attributes") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: GameLiftClient
- paginator: DescribeFleetAttributesPaginator
- item: DescribeFleetAttributesOutputTypeDef
Explicit type annotations#
With boto3-stubs-lite[gamelift]
or a standalone mypy_boto3_gamelift
package, you have to explicitly specify client: GameLiftClient
type annotation.
All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.
Client method usage example#
# GameLiftClient usage example with type annotations
from boto3.session import Session
from mypy_boto3_gamelift.client import GameLiftClient
from mypy_boto3_gamelift.type_defs import ClaimGameServerOutputTypeDef
from mypy_boto3_gamelift.type_defs import ClaimGameServerInputTypeDef
session = Session()
client: GameLiftClient = session.client("gamelift")
kwargs: ClaimGameServerInputTypeDef = {...}
result: ClaimGameServerOutputTypeDef = client.claim_game_server(**kwargs)
Paginator usage example#
# DescribeFleetAttributesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_gamelift.client import GameLiftClient
from mypy_boto3_gamelift.paginator import DescribeFleetAttributesPaginator
from mypy_boto3_gamelift.type_defs import DescribeFleetAttributesOutputTypeDef
session = Session()
client: GameLiftClient = session.client("gamelift")
paginator: DescribeFleetAttributesPaginator = client.get_paginator("describe_fleet_attributes")
for item in paginator.paginate(...):
item: DescribeFleetAttributesOutputTypeDef
print(item)