Skip to content

Examples#

Index > IdentityStore > Examples

Auto-generated documentation for IdentityStore type annotations stubs module mypy-boto3-identitystore.

Client#

Implicit type annotations#

Can be used with boto3-stubs[identitystore] package installed.

Write your IdentityStore code as usual, type checking and code completion should work out of the box.

Client method usage example#

# IdentityStoreClient usage example

from boto3.session import Session


session = Session()

client = session.client("identitystore")  # (1)
result = client.create_group()  # (2)
  1. client: IdentityStoreClient
  2. result: CreateGroupResponseTypeDef

Paginator usage example#

# ListGroupMembershipsForMemberPaginator usage example

from boto3.session import Session


session = Session()
client = session.client("identitystore")  # (1)

paginator = client.get_paginator("list_group_memberships_for_member")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: IdentityStoreClient
  2. paginator: ListGroupMembershipsForMemberPaginator
  3. item: ListGroupMembershipsForMemberResponseTypeDef

Explicit type annotations#

With boto3-stubs-lite[identitystore] or a standalone mypy_boto3_identitystore package, you have to explicitly specify client: IdentityStoreClient 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#

# IdentityStoreClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_identitystore.client import IdentityStoreClient
from mypy_boto3_identitystore.type_defs import CreateGroupResponseTypeDef
from mypy_boto3_identitystore.type_defs import CreateGroupRequestTypeDef


session = Session()

client: IdentityStoreClient = session.client("identitystore")

kwargs: CreateGroupRequestTypeDef = {...}
result: CreateGroupResponseTypeDef = client.create_group(**kwargs)

Paginator usage example#

# ListGroupMembershipsForMemberPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_identitystore.client import IdentityStoreClient
from mypy_boto3_identitystore.paginator import ListGroupMembershipsForMemberPaginator
from mypy_boto3_identitystore.type_defs import ListGroupMembershipsForMemberResponseTypeDef


session = Session()
client: IdentityStoreClient = session.client("identitystore")

paginator: ListGroupMembershipsForMemberPaginator = client.get_paginator("list_group_memberships_for_member")
for item in paginator.paginate(...):
    item: ListGroupMembershipsForMemberResponseTypeDef
    print(item)