ListResourcesForTagOption

class ServiceCatalog.Paginator.ListResourcesForTagOption
paginator = client.get_paginator('list_resources_for_tag_option')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ServiceCatalog.Client.list_resources_for_tag_option().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    TagOptionId='string',
    ResourceType='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • TagOptionId (string) --

    [REQUIRED]

    The TagOption identifier.

  • ResourceType (string) --

    The resource type.

    • Portfolio
    • Product
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ResourceDetails': [
        {
            'Id': 'string',
            'ARN': 'string',
            'Name': 'string',
            'Description': 'string',
            'CreatedTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ResourceDetails (list) --

      Information about the resources.

      • (dict) --

        Information about a resource.

        • Id (string) --

          The identifier of the resource.

        • ARN (string) --

          The ARN of the resource.

        • Name (string) --

          The name of the resource.

        • Description (string) --

          The description of the resource.

        • CreatedTime (datetime) --

          The creation time of the resource.

    • NextToken (string) --

      A token to resume pagination.