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