Skip to content

Examples

Index > EBS > Examples

Auto-generated documentation for EBS type annotations stubs module mypy-boto3-ebs.

Client

Implicit type annotations

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

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

Client usage example
from boto3.session import Session


session = Session()

client = session.client("ebs")  # (1)
result = client.complete_snapshot()  # (2)
  1. client: EBSClient
  2. result: CompleteSnapshotResponseTypeDef

Explicit type annotations

With boto3-stubs-lite[ebs] or a standalone mypy_boto3_ebs package, you have to explicitly specify client: EBSClient 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 usage example
from boto3.session import Session

from mypy_boto3_ebs.client import EBSClient
from mypy_boto3_ebs.type_defs import CompleteSnapshotResponseTypeDef
from mypy_boto3_ebs.type_defs import CompleteSnapshotRequestRequestTypeDef


session = Session()

client: EBSClient = session.client("ebs")

kwargs: CompleteSnapshotRequestRequestTypeDef = {...}
result: CompleteSnapshotResponseTypeDef = client.complete_snapshot(**kwargs)