Skip to content

Examples#

Index > Drs > Examples

Auto-generated documentation for Drs type annotations stubs module mypy-boto3-drs.

Client#

Implicit type annotations#

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

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

Client method usage example#

# DrsClient usage example

from boto3.session import Session


session = Session()

client = session.client("drs")  # (1)
result = client.associate_source_network_stack()  # (2)
  1. client: DrsClient
  2. result: AssociateSourceNetworkStackResponseTypeDef

Paginator usage example#

# DescribeJobLogItemsPaginator usage example

from boto3.session import Session


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

paginator = client.get_paginator("describe_job_log_items")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: DrsClient
  2. paginator: DescribeJobLogItemsPaginator
  3. item: DescribeJobLogItemsResponseTypeDef

Explicit type annotations#

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

# DrsClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_drs.client import DrsClient
from mypy_boto3_drs.type_defs import AssociateSourceNetworkStackResponseTypeDef
from mypy_boto3_drs.type_defs import AssociateSourceNetworkStackRequestTypeDef


session = Session()

client: DrsClient = session.client("drs")

kwargs: AssociateSourceNetworkStackRequestTypeDef = {...}
result: AssociateSourceNetworkStackResponseTypeDef = client.associate_source_network_stack(**kwargs)

Paginator usage example#

# DescribeJobLogItemsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_drs.client import DrsClient
from mypy_boto3_drs.paginator import DescribeJobLogItemsPaginator
from mypy_boto3_drs.type_defs import DescribeJobLogItemsResponseTypeDef


session = Session()
client: DrsClient = session.client("drs")

paginator: DescribeJobLogItemsPaginator = client.get_paginator("describe_job_log_items")
for item in paginator.paginate(...):
    item: DescribeJobLogItemsResponseTypeDef
    print(item)