Skip to content

Examples#

Index > ResourceGroups > Examples

Auto-generated documentation for ResourceGroups type annotations stubs module mypy-boto3-resource-groups.

Client#

Implicit type annotations#

Can be used with boto3-stubs[resource-groups] package installed.

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

# ResourceGroupsClient usage example

from boto3.session import Session


session = Session()

client = session.client("resource-groups")  # (1)
result = client.create_group()  # (2)
  1. client: ResourceGroupsClient
  2. result: CreateGroupOutputTypeDef
# 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)
  1. client: ResourceGroupsClient
  2. paginator: ListGroupResourcesPaginator
  3. item: ListGroupResourcesOutputTypeDef

Explicit type annotations#

With boto3-stubs-lite[resource-groups] or a standalone mypy_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.

# ResourceGroupsClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_groups.client import ResourceGroupsClient
from mypy_boto3_resource_groups.type_defs import CreateGroupOutputTypeDef
from mypy_boto3_resource_groups.type_defs import CreateGroupInputRequestTypeDef


session = Session()

client: ResourceGroupsClient = session.client("resource-groups")

kwargs: CreateGroupInputRequestTypeDef = {...}
result: CreateGroupOutputTypeDef = client.create_group(**kwargs)
# ListGroupResourcesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_groups.client import ResourceGroupsClient
from mypy_boto3_resource_groups.paginator import ListGroupResourcesPaginator
from mypy_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)