Examples#
Index > IAMRolesAnywhere > Examples
Auto-generated documentation for IAMRolesAnywhere type annotations stubs module mypy-boto3-rolesanywhere.
Client#
Implicit type annotations#
Can be used with boto3-stubs[rolesanywhere]
package installed.
Write your IAMRolesAnywhere
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# IAMRolesAnywhereClient usage example
from boto3.session import Session
session = Session()
client = session.client("rolesanywhere") # (1)
result = client.create_profile() # (2)
- client: IAMRolesAnywhereClient
- result: ProfileDetailResponseTypeDef
Paginator usage example#
# ListCrlsPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("rolesanywhere") # (1)
paginator = client.get_paginator("list_crls") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: IAMRolesAnywhereClient
- paginator: ListCrlsPaginator
- item: ListCrlsResponseTypeDef
Explicit type annotations#
With boto3-stubs-lite[rolesanywhere]
or a standalone mypy_boto3_rolesanywhere
package, you have to explicitly specify client: IAMRolesAnywhereClient
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#
# IAMRolesAnywhereClient usage example with type annotations
from boto3.session import Session
from mypy_boto3_rolesanywhere.client import IAMRolesAnywhereClient
from mypy_boto3_rolesanywhere.type_defs import ProfileDetailResponseTypeDef
from mypy_boto3_rolesanywhere.type_defs import CreateProfileRequestTypeDef
session = Session()
client: IAMRolesAnywhereClient = session.client("rolesanywhere")
kwargs: CreateProfileRequestTypeDef = {...}
result: ProfileDetailResponseTypeDef = client.create_profile(**kwargs)
Paginator usage example#
# ListCrlsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_rolesanywhere.client import IAMRolesAnywhereClient
from mypy_boto3_rolesanywhere.paginator import ListCrlsPaginator
from mypy_boto3_rolesanywhere.type_defs import ListCrlsResponseTypeDef
session = Session()
client: IAMRolesAnywhereClient = session.client("rolesanywhere")
paginator: ListCrlsPaginator = client.get_paginator("list_crls")
for item in paginator.paginate(...):
item: ListCrlsResponseTypeDef
print(item)