:doc:`SESV2 <../../sesv2>` / Paginator / ListTenantResources

*******************
ListTenantResources
*******************



.. py:class:: SESV2.Paginator.ListTenantResources

  ::

    
    paginator = client.get_paginator('list_tenant_resources')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`SESV2.Client.list_tenant_resources`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/ListTenantResources>`_    


    **Request Syntax**
    ::

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

      The name of the tenant to list resources for.

      

    
    :type Filter: dict
    :param Filter: 

      A map of filter keys and values for filtering the list of tenant resources. Currently, the only supported filter key is ``RESOURCE_TYPE``.

      

    
      - *(string) --* 

        The key used to filter tenant resources. Currently, the only supported filter key is ``RESOURCE_TYPE``.

        

      
        - *(string) --* 

          The value used to filter tenant resources. When filtering by ``RESOURCE_TYPE``, valid values are ``EMAIL_IDENTITY``, ``CONFIGURATION_SET``, or ``EMAIL_TEMPLATE``.

          

        
  

    :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**

      
      ::

        {
            'TenantResources': [
                {
                    'ResourceType': 'EMAIL_IDENTITY'|'CONFIGURATION_SET'|'EMAIL_TEMPLATE',
                    'ResourceArn': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 

        Information about resources associated with a specific tenant.

        
        

        - **TenantResources** *(list) --* 

          An array that contains information about each resource associated with the tenant.

          
          

          - *(dict) --* 

            A structure that contains information about a resource associated with a tenant.

            
            

            - **ResourceType** *(string) --* 

              The type of resource associated with the tenant. Valid values are ``EMAIL_IDENTITY``, ``CONFIGURATION_SET``, or ``EMAIL_TEMPLATE``.

              
            

            - **ResourceArn** *(string) --* 

              The Amazon Resource Name (ARN) of the resource associated with the tenant.

              
        
      
    