:doc:`DataZone <../../datazone>` / Paginator / ListAssetFilters

****************
ListAssetFilters
****************



.. py:class:: DataZone.Paginator.ListAssetFilters

  ::

    
    paginator = client.get_paginator('list_asset_filters')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DataZone.Client.list_asset_filters`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListAssetFilters>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          assetIdentifier='string',
          status='VALID'|'INVALID',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The ID of the domain where you want to list asset filters.

      

    
    :type assetIdentifier: string
    :param assetIdentifier: **[REQUIRED]** 

      The ID of the data asset.

      

    
    :type status: string
    :param status: 

      The status of the asset filter.

      

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

      
      ::

        {
            'items': [
                {
                    'id': 'string',
                    'domainId': 'string',
                    'assetId': 'string',
                    'name': 'string',
                    'description': 'string',
                    'status': 'VALID'|'INVALID',
                    'effectiveColumnNames': [
                        'string',
                    ],
                    'effectiveRowFilter': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'errorMessage': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          The results of the ``ListAssetFilters`` action.

          
          

          - *(dict) --* 

            The summary of the asset filter.

            
            

            - **id** *(string) --* 

              The ID of the asset filter.

              
            

            - **domainId** *(string) --* 

              The ID of the domain where the asset filter lives.

              
            

            - **assetId** *(string) --* 

              The ID of the data asset.

              
            

            - **name** *(string) --* 

              The name of the asset filter.

              
            

            - **description** *(string) --* 

              The description of the asset filter.

              
            

            - **status** *(string) --* 

              The status of the asset filter.

              
            

            - **effectiveColumnNames** *(list) --* 

              The effective column names of the asset filter.

              
              

              - *(string) --* 
          
            

            - **effectiveRowFilter** *(string) --* 

              The effective row filter of the asset filter.

              
            

            - **createdAt** *(datetime) --* 

              The timestamp at which the asset filter was created.

              
            

            - **errorMessage** *(string) --* 

              The error message that is displayed if the action does not succeed.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    