Skip to content

Examples#

Index > DataExchange > Examples

Auto-generated documentation for DataExchange type annotations stubs module mypy-boto3-dataexchange.

Client#

Implicit type annotations#

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

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

Client method usage example#

# DataExchangeClient usage example

from boto3.session import Session


session = Session()

client = session.client("dataexchange")  # (1)
result = client.accept_data_grant()  # (2)
  1. client: DataExchangeClient
  2. result: AcceptDataGrantResponseTypeDef

Paginator usage example#

# ListDataGrantsPaginator usage example

from boto3.session import Session


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

paginator = client.get_paginator("list_data_grants")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DataExchangeClient
  2. paginator: ListDataGrantsPaginator
  3. item: ListDataGrantsResponseTypeDef

Explicit type annotations#

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

# DataExchangeClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_dataexchange.client import DataExchangeClient
from mypy_boto3_dataexchange.type_defs import AcceptDataGrantResponseTypeDef
from mypy_boto3_dataexchange.type_defs import AcceptDataGrantRequestTypeDef


session = Session()

client: DataExchangeClient = session.client("dataexchange")

kwargs: AcceptDataGrantRequestTypeDef = {...}
result: AcceptDataGrantResponseTypeDef = client.accept_data_grant(**kwargs)

Paginator usage example#

# ListDataGrantsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_dataexchange.client import DataExchangeClient
from mypy_boto3_dataexchange.paginator import ListDataGrantsPaginator
from mypy_boto3_dataexchange.type_defs import ListDataGrantsResponseTypeDef


session = Session()
client: DataExchangeClient = session.client("dataexchange")

paginator: ListDataGrantsPaginator = client.get_paginator("list_data_grants")
for item in paginator.paginate(...):
    item: ListDataGrantsResponseTypeDef
    print(item)