:doc:`IoTFleetWise <../../iotfleetwise>` / Paginator / ListDecoderManifests

********************
ListDecoderManifests
********************



.. py:class:: IoTFleetWise.Paginator.ListDecoderManifests

  ::

    
    paginator = client.get_paginator('list_decoder_manifests')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`IoTFleetWise.Client.list_decoder_manifests`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotfleetwise-2021-06-17/ListDecoderManifests>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          modelManifestArn='string',
          listResponseScope='METADATA_ONLY',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type modelManifestArn: string
    :param modelManifestArn: 

      The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.

      

    
    :type listResponseScope: string
    :param listResponseScope: 

      When you set the ``listResponseScope`` parameter to ``METADATA_ONLY``, the list response includes: decoder manifest name, Amazon Resource Name (ARN), creation time, and last modification time.

      

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

      
      ::

        {
            'summaries': [
                {
                    'name': 'string',
                    'arn': 'string',
                    'modelManifestArn': 'string',
                    'description': 'string',
                    'status': 'ACTIVE'|'DRAFT'|'INVALID'|'VALIDATING',
                    'creationTime': datetime(2015, 1, 1),
                    'lastModificationTime': datetime(2015, 1, 1),
                    'message': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **summaries** *(list) --* 

          A list of information about each decoder manifest.

          
          

          - *(dict) --* 

            Information about a created decoder manifest. You can use the API operation to return this information about multiple decoder manifests.

            
            

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

              The name of the decoder manifest.

              
            

            - **arn** *(string) --* 

              The ARN of a vehicle model (model manifest) associated with the decoder manifest.

              
            

            - **modelManifestArn** *(string) --* 

              The ARN of a vehicle model (model manifest) associated with the decoder manifest.

              
            

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

              A brief description of the decoder manifest.

              
            

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

              The state of the decoder manifest. If the status is ``ACTIVE``, the decoder manifest can't be edited. If the status is marked ``DRAFT``, you can edit the decoder manifest.

              
            

            - **creationTime** *(datetime) --* 

              The time the decoder manifest was created in seconds since epoch (January 1, 1970 at midnight UTC time).

              
            

            - **lastModificationTime** *(datetime) --* 

              The time the decoder manifest was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).

              
            

            - **message** *(string) --* 

              The detailed message for the decoder manifest. When a decoder manifest is in an ``INVALID`` status, the message contains detailed reason and help information.

              
        
      
        

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

          A token to resume pagination.

          
    