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