Skip to content

Mobile module

Index > Mobile

Auto-generated documentation for Mobile type annotations stubs module types-aiobotocore-mobile.

How to install

From PyPI with pip

Install types-aioboto3 for Mobile service.

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


# 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[mobile]'


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

How to uninstall

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

Usage

Code samples can be found in Examples.

MobileClient

Type annotations and code completion for session.client("mobile") as MobileClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_mobile.client import MobileClient


session = Session()
async with session.client("mobile") as client:
    client: MobileClient

Paginators

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

Usage example
from types_aiobotocore_mobile.paginator import ListBundlesPaginator

def get_list_bundles_paginator() -> ListBundlesPaginator:
    return client.get_paginator("list_bundles"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_mobile.literals import ListBundlesPaginatorName

def get_value() -> ListBundlesPaginatorName:
    return "list_bundles"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_mobile.type_defs import BundleDetailsTypeDef

def get_value() -> BundleDetailsTypeDef:
    return {
        "bundleId": ...,
    }