:doc:`IoT <../../iot>` / Paginator / ListSbomValidationResults

*************************
ListSbomValidationResults
*************************



.. py:class:: IoT.Paginator.ListSbomValidationResults

  ::

    
    paginator = client.get_paginator('list_sbom_validation_results')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`IoT.Client.list_sbom_validation_results`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/ListSbomValidationResults>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          packageName='string',
          versionName='string',
          validationResult='FAILED'|'SUCCEEDED',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type packageName: string
    :param packageName: **[REQUIRED]** 

      The name of the new software package.

      

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

      The name of the new package version.

      

    
    :type validationResult: string
    :param validationResult: 

      The end result of the

      

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

      
      ::

        {
            'validationResultSummaries': [
                {
                    'fileName': 'string',
                    'validationResult': 'FAILED'|'SUCCEEDED',
                    'errorCode': 'INCOMPATIBLE_FORMAT'|'FILE_SIZE_LIMIT_EXCEEDED',
                    'errorMessage': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **validationResultSummaries** *(list) --* 

          A summary of the validation results for each software bill of materials attached to a software package version.

          
          

          - *(dict) --* 

            A summary of the validation results for a specific software bill of materials (SBOM) attached to a software package version.

            
            

            - **fileName** *(string) --* 

              The name of the SBOM file.

              
            

            - **validationResult** *(string) --* 

              The end result of the SBOM validation.

              
            

            - **errorCode** *(string) --* 

              The ``errorCode`` representing the validation failure error if the SBOM validation failed.

              
            

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

              The ``errorMessage`` representing the validation failure error if the SBOM validation failed.

              
        
      
        

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

          A token to resume pagination.

          
    