:doc:`ServiceCatalog <../../servicecatalog>` / Paginator / ListResourcesForTagOption

*************************
ListResourcesForTagOption
*************************



.. py:class:: ServiceCatalog.Paginator.ListResourcesForTagOption

  ::

    
    paginator = client.get_paginator('list_resources_for_tag_option')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`ServiceCatalog.Client.list_resources_for_tag_option`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListResourcesForTagOption>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          TagOptionId='string',
          ResourceType='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type TagOptionId: string
    :param TagOptionId: **[REQUIRED]** 

      The TagOption identifier.

      

    
    :type ResourceType: string
    :param ResourceType: 

      The resource type.

       

      
      * ``Portfolio``
       
      * ``Product``
      

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: 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.

          
    