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