Skip to content

Examples#

Index > Detective > Examples

Auto-generated documentation for Detective type annotations stubs module types-boto3-detective.

Client#

Implicit type annotations#

Can be used with types-boto3[detective] package installed.

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

Client method usage example#

# DetectiveClient usage example

from boto3.session import Session


session = Session()

client = session.client("detective")  # (1)
result = client.accept_invitation()  # (2)
  1. client: DetectiveClient
  2. result: EmptyResponseMetadataTypeDef

Explicit type annotations#

With types-boto3-lite[detective] or a standalone types_boto3_detective package, you have to explicitly specify client: DetectiveClient 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#

# DetectiveClient usage example with type annotations

from boto3.session import Session

from types_boto3_detective.client import DetectiveClient
from types_boto3_detective.type_defs import EmptyResponseMetadataTypeDef
from types_boto3_detective.type_defs import AcceptInvitationRequestTypeDef


session = Session()

client: DetectiveClient = session.client("detective")

kwargs: AcceptInvitationRequestTypeDef = {...}
result: EmptyResponseMetadataTypeDef = client.accept_invitation(**kwargs)