Skip to content

AmplifyUIBuilder module

Index > AmplifyUIBuilder

Auto-generated documentation for AmplifyUIBuilder type annotations stubs module types-aiobotocore-amplifyuibuilder.

How to install

From PyPI with pip

Install types-aioboto3 for AmplifyUIBuilder service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

AmplifyUIBuilderClient

Type annotations and code completion for session.client("amplifyuibuilder") as AmplifyUIBuilderClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_amplifyuibuilder.client import AmplifyUIBuilderClient


session = Session()
async with session.client("amplifyuibuilder") as client:
    client: AmplifyUIBuilderClient

Paginators

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

Usage example
from types_aiobotocore_amplifyuibuilder.paginator import ExportComponentsPaginator

def get_export_components_paginator() -> ExportComponentsPaginator:
    return client.get_paginator("export_components"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_amplifyuibuilder.literals import ExportComponentsPaginatorName

def get_value() -> ExportComponentsPaginatorName:
    return "export_components"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_amplifyuibuilder.type_defs import MutationActionSetStateParameterTypeDef

def get_value() -> MutationActionSetStateParameterTypeDef:
    return {
        "componentName": ...,
        "property": ...,
        "set": ...,
    }