Examples#
Index > ChimeSDKMeetings > Examples
Auto-generated documentation for ChimeSDKMeetings type annotations stubs module types-boto3-chime-sdk-meetings.
Client#
Implicit type annotations#
Can be used with types-boto3[chime-sdk-meetings] package installed.
Write your ChimeSDKMeetings code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# ChimeSDKMeetingsClient usage example
from boto3.session import Session
session = Session()
client = session.client("chime-sdk-meetings") # (1)
result = client.batch_create_attendee() # (2)
- client: ChimeSDKMeetingsClient
- result: BatchCreateAttendeeResponseTypeDef
Explicit type annotations#
With types-boto3-lite[chime-sdk-meetings]
or a standalone types_boto3_chime_sdk_meetings package, you have to explicitly specify client: ChimeSDKMeetingsClient 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#
# ChimeSDKMeetingsClient usage example with type annotations
from boto3.session import Session
from types_boto3_chime_sdk_meetings.client import ChimeSDKMeetingsClient
from types_boto3_chime_sdk_meetings.type_defs import BatchCreateAttendeeResponseTypeDef
from types_boto3_chime_sdk_meetings.type_defs import BatchCreateAttendeeRequestTypeDef
session = Session()
client: ChimeSDKMeetingsClient = session.client("chime-sdk-meetings")
kwargs: BatchCreateAttendeeRequestTypeDef = {...}
result: BatchCreateAttendeeResponseTypeDef = client.batch_create_attendee(**kwargs)