Examples#
Index > ResourceGroupsTaggingAPI > Examples
Auto-generated documentation for ResourceGroupsTaggingAPI type annotations stubs module mypy-boto3-resourcegroupstaggingapi.
Client#
Implicit type annotations#
Can be used with boto3-stubs[resourcegroupstaggingapi]
package installed.
Write your ResourceGroupsTaggingAPI
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# ResourceGroupsTaggingAPIClient usage example
from boto3.session import Session
session = Session()
client = session.client("resourcegroupstaggingapi") # (1)
result = client.get_compliance_summary() # (2)
- client: ResourceGroupsTaggingAPIClient
- result: GetComplianceSummaryOutputTypeDef
Paginator usage example#
# GetComplianceSummaryPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("resourcegroupstaggingapi") # (1)
paginator = client.get_paginator("get_compliance_summary") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ResourceGroupsTaggingAPIClient
- paginator: GetComplianceSummaryPaginator
- item: GetComplianceSummaryOutputTypeDef
Explicit type annotations#
With boto3-stubs-lite[resourcegroupstaggingapi]
or a standalone mypy_boto3_resourcegroupstaggingapi
package, you have to explicitly specify client: ResourceGroupsTaggingAPIClient
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#
# ResourceGroupsTaggingAPIClient usage example with type annotations
from boto3.session import Session
from mypy_boto3_resourcegroupstaggingapi.client import ResourceGroupsTaggingAPIClient
from mypy_boto3_resourcegroupstaggingapi.type_defs import GetComplianceSummaryOutputTypeDef
from mypy_boto3_resourcegroupstaggingapi.type_defs import GetComplianceSummaryInputTypeDef
session = Session()
client: ResourceGroupsTaggingAPIClient = session.client("resourcegroupstaggingapi")
kwargs: GetComplianceSummaryInputTypeDef = {...}
result: GetComplianceSummaryOutputTypeDef = client.get_compliance_summary(**kwargs)
Paginator usage example#
# GetComplianceSummaryPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_resourcegroupstaggingapi.client import ResourceGroupsTaggingAPIClient
from mypy_boto3_resourcegroupstaggingapi.paginator import GetComplianceSummaryPaginator
from mypy_boto3_resourcegroupstaggingapi.type_defs import GetComplianceSummaryOutputTypeDef
session = Session()
client: ResourceGroupsTaggingAPIClient = session.client("resourcegroupstaggingapi")
paginator: GetComplianceSummaryPaginator = client.get_paginator("get_compliance_summary")
for item in paginator.paginate(...):
item: GetComplianceSummaryOutputTypeDef
print(item)