Skip to content

ResourceGroupsTaggingAPIClient

Index > ResourceGroupsTaggingAPI > ResourceGroupsTaggingAPIClient

Auto-generated documentation for ResourceGroupsTaggingAPI type annotations stubs module mypy-boto3-resourcegroupstaggingapi.

ResourceGroupsTaggingAPIClient

Type annotations and code completion for boto3.client("resourcegroupstaggingapi"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_resourcegroupstaggingapi.client import ResourceGroupsTaggingAPIClient

def get_resourcegroupstaggingapi_client() -> ResourceGroupsTaggingAPIClient:
    return Session().client("resourcegroupstaggingapi")

Exceptions

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("resourcegroupstaggingapi").exceptions structure.

Usage example
client = boto3.client("resourcegroupstaggingapi")

try:
    do_something(client)
except (
    client.ClientError,
    client.ConcurrentModificationException,
    client.ConstraintViolationException,
    client.InternalServiceException,
    client.InvalidParameterException,
    client.PaginationTokenExpiredException,
    client.ThrottledException,
) as e:
    print(e)
Type checking example
from mypy_boto3_resourcegroupstaggingapi.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").close method. boto3 documentation

Method definition
def close(
    self,
) -> None:
    ...

describe_report_creation

Describes the status of the StartReportCreation operation.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").describe_report_creation method. boto3 documentation

Method definition
def describe_report_creation(
    self,
) -> DescribeReportCreationOutputTypeDef:  # (1)
    ...
  1. See DescribeReportCreationOutputTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").generate_presigned_url method. boto3 documentation

Method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_compliance_summary

Returns a table that shows counts of resources that are noncompliant with their tag policies.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").get_compliance_summary method. boto3 documentation

Method definition
def get_compliance_summary(
    self,
    *,
    TargetIdFilters: Sequence[str] = ...,
    RegionFilters: Sequence[str] = ...,
    ResourceTypeFilters: Sequence[str] = ...,
    TagKeyFilters: Sequence[str] = ...,
    GroupBy: Sequence[GroupByAttributeType] = ...,  # (1)
    MaxResults: int = ...,
    PaginationToken: str = ...,
) -> GetComplianceSummaryOutputTypeDef:  # (2)
    ...
  1. See GroupByAttributeType
  2. See GetComplianceSummaryOutputTypeDef
Usage example with kwargs
kwargs: GetComplianceSummaryInputRequestTypeDef = {  # (1)
    "TargetIdFilters": ...,
}

parent.get_compliance_summary(**kwargs)
  1. See GetComplianceSummaryInputRequestTypeDef

get_resources

Returns all the tagged or previously tagged resources that are located in the specified Amazon Web Services Region for the account.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").get_resources method. boto3 documentation

Method definition
def get_resources(
    self,
    *,
    PaginationToken: str = ...,
    TagFilters: Sequence[TagFilterTypeDef] = ...,  # (1)
    ResourcesPerPage: int = ...,
    TagsPerPage: int = ...,
    ResourceTypeFilters: Sequence[str] = ...,
    IncludeComplianceDetails: bool = ...,
    ExcludeCompliantResources: bool = ...,
    ResourceARNList: Sequence[str] = ...,
) -> GetResourcesOutputTypeDef:  # (2)
    ...
  1. See TagFilterTypeDef
  2. See GetResourcesOutputTypeDef
Usage example with kwargs
kwargs: GetResourcesInputRequestTypeDef = {  # (1)
    "PaginationToken": ...,
}

parent.get_resources(**kwargs)
  1. See GetResourcesInputRequestTypeDef

get_tag_keys

Returns all tag keys currently in use in the specified Amazon Web Services Region for the calling account.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").get_tag_keys method. boto3 documentation

Method definition
def get_tag_keys(
    self,
    *,
    PaginationToken: str = ...,
) -> GetTagKeysOutputTypeDef:  # (1)
    ...
  1. See GetTagKeysOutputTypeDef
Usage example with kwargs
kwargs: GetTagKeysInputRequestTypeDef = {  # (1)
    "PaginationToken": ...,
}

parent.get_tag_keys(**kwargs)
  1. See GetTagKeysInputRequestTypeDef

get_tag_values

Returns all tag values for the specified key that are used in the specified Amazon Web Services Region for the calling account.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").get_tag_values method. boto3 documentation

Method definition
def get_tag_values(
    self,
    *,
    Key: str,
    PaginationToken: str = ...,
) -> GetTagValuesOutputTypeDef:  # (1)
    ...
  1. See GetTagValuesOutputTypeDef
Usage example with kwargs
kwargs: GetTagValuesInputRequestTypeDef = {  # (1)
    "Key": ...,
}

parent.get_tag_values(**kwargs)
  1. See GetTagValuesInputRequestTypeDef

start_report_creation

Generates a report that lists all tagged resources in the accounts across your organization and tells whether each resource is compliant with the effective tag policy.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").start_report_creation method. boto3 documentation

Method definition
def start_report_creation(
    self,
    *,
    S3Bucket: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: StartReportCreationInputRequestTypeDef = {  # (1)
    "S3Bucket": ...,
}

parent.start_report_creation(**kwargs)
  1. See StartReportCreationInputRequestTypeDef

tag_resources

Applies one or more tags to the specified resources.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").tag_resources method. boto3 documentation

Method definition
def tag_resources(
    self,
    *,
    ResourceARNList: Sequence[str],
    Tags: Mapping[str, str],
) -> TagResourcesOutputTypeDef:  # (1)
    ...
  1. See TagResourcesOutputTypeDef
Usage example with kwargs
kwargs: TagResourcesInputRequestTypeDef = {  # (1)
    "ResourceARNList": ...,
    "Tags": ...,
}

parent.tag_resources(**kwargs)
  1. See TagResourcesInputRequestTypeDef

untag_resources

Removes the specified tags from the specified resources.

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").untag_resources method. boto3 documentation

Method definition
def untag_resources(
    self,
    *,
    ResourceARNList: Sequence[str],
    TagKeys: Sequence[str],
) -> UntagResourcesOutputTypeDef:  # (1)
    ...
  1. See UntagResourcesOutputTypeDef
Usage example with kwargs
kwargs: UntagResourcesInputRequestTypeDef = {  # (1)
    "ResourceARNList": ...,
    "TagKeys": ...,
}

parent.untag_resources(**kwargs)
  1. See UntagResourcesInputRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("resourcegroupstaggingapi").get_paginator method with overloads.