Skip to content

IdentityStore module

Index > IdentityStore

Auto-generated documentation for IdentityStore type annotations stubs module types-aiobotocore-identitystore.

How to install

From PyPI with pip

Install types-aioboto3 for IdentityStore service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

IdentityStoreClient

Type annotations and code completion for session.client("identitystore") as IdentityStoreClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_identitystore.client import IdentityStoreClient


session = Session()
async with session.client("identitystore") as client:
    client: IdentityStoreClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_identitystore.literals import IdentityStoreServiceName

def get_value() -> IdentityStoreServiceName:
    return "identitystore"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_identitystore.type_defs import DescribeGroupRequestRequestTypeDef

def get_value() -> DescribeGroupRequestRequestTypeDef:
    return {
        "IdentityStoreId": ...,
        "GroupId": ...,
    }