Skip to content

GameSparks module

Index > GameSparks

Auto-generated documentation for GameSparks type annotations stubs module types-aiobotocore-gamesparks.

How to install

From PyPI with pip

Install types-aioboto3 for GameSparks service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[gamesparks]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[gamesparks]'


# standalone installation
python -m pip install types-aiobotocore-gamesparks

How to uninstall

python -m pip uninstall -y types-aiobotocore-gamesparks

Usage

Code samples can be found in Examples.

GameSparksClient

Type annotations and code completion for session.client("gamesparks") as GameSparksClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_gamesparks.client import GameSparksClient


session = Session()
async with session.client("gamesparks") as client:
    client: GameSparksClient

Paginators

Type annotations and code completion for paginators from session.client("gamesparks").get_paginator("...").

Usage example
from types_aiobotocore_gamesparks.paginator import ListExtensionVersionsPaginator

def get_list_extension_versions_paginator() -> ListExtensionVersionsPaginator:
    return client.get_paginator("list_extension_versions"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_gamesparks.literals import DeploymentActionType

def get_value() -> DeploymentActionType:
    return "DEPLOY"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_gamesparks.type_defs import ConnectionTypeDef

def get_value() -> ConnectionTypeDef:
    return {
        "Created": ...,
    }