:doc:`CodeGuruSecurity <../../codeguru-security>` / Paginator / ListFindingsMetrics

*******************
ListFindingsMetrics
*******************



.. py:class:: CodeGuruSecurity.Paginator.ListFindingsMetrics

  ::

    
    paginator = client.get_paginator('list_findings_metrics')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`CodeGuruSecurity.Client.list_findings_metrics`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          startDate=datetime(2015, 1, 1),
          endDate=datetime(2015, 1, 1),
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type startDate: datetime
    :param startDate: **[REQUIRED]** 

      The start date of the interval which you want to retrieve metrics from. Rounds to the nearest day.

      

    
    :type endDate: datetime
    :param endDate: **[REQUIRED]** 

      The end date of the interval which you want to retrieve metrics from. Round to the nearest day.

      

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

      
      ::

        {
            'findingsMetrics': [
                {
                    'date': datetime(2015, 1, 1),
                    'newFindings': {
                        'info': 123.0,
                        'low': 123.0,
                        'medium': 123.0,
                        'high': 123.0,
                        'critical': 123.0
                    },
                    'closedFindings': {
                        'info': 123.0,
                        'low': 123.0,
                        'medium': 123.0,
                        'high': 123.0,
                        'critical': 123.0
                    },
                    'openFindings': {
                        'info': 123.0,
                        'low': 123.0,
                        'medium': 123.0,
                        'high': 123.0,
                        'critical': 123.0
                    },
                    'meanTimeToClose': {
                        'info': 123.0,
                        'low': 123.0,
                        'medium': 123.0,
                        'high': 123.0,
                        'critical': 123.0
                    }
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **findingsMetrics** *(list) --* 

          A list of ``AccountFindingsMetric`` objects retrieved from the specified time interval.

          
          

          - *(dict) --* 

            A summary of findings metrics for an account on a specified date.

            
            

            - **date** *(datetime) --* 

              The date from which the findings metrics were retrieved.

              
            

            - **newFindings** *(dict) --* 

              The number of new findings of each severity on the specified date.

              
              

              - **info** *(float) --* 

                A numeric value corresponding to an informational finding.

                
              

              - **low** *(float) --* 

                A numeric value corresponding to a low severity finding.

                
              

              - **medium** *(float) --* 

                A numeric value corresponding to a medium severity finding.

                
              

              - **high** *(float) --* 

                A numeric value corresponding to a high severity finding.

                
              

              - **critical** *(float) --* 

                A numeric value corresponding to a critical finding.

                
          
            

            - **closedFindings** *(dict) --* 

              The number of closed findings of each severity on the specified date.

              
              

              - **info** *(float) --* 

                A numeric value corresponding to an informational finding.

                
              

              - **low** *(float) --* 

                A numeric value corresponding to a low severity finding.

                
              

              - **medium** *(float) --* 

                A numeric value corresponding to a medium severity finding.

                
              

              - **high** *(float) --* 

                A numeric value corresponding to a high severity finding.

                
              

              - **critical** *(float) --* 

                A numeric value corresponding to a critical finding.

                
          
            

            - **openFindings** *(dict) --* 

              The number of open findings of each severity as of the specified date.

              
              

              - **info** *(float) --* 

                A numeric value corresponding to an informational finding.

                
              

              - **low** *(float) --* 

                A numeric value corresponding to a low severity finding.

                
              

              - **medium** *(float) --* 

                A numeric value corresponding to a medium severity finding.

                
              

              - **high** *(float) --* 

                A numeric value corresponding to a high severity finding.

                
              

              - **critical** *(float) --* 

                A numeric value corresponding to a critical finding.

                
          
            

            - **meanTimeToClose** *(dict) --* 

              The average time in days it takes to close findings of each severity as of a specified date.

              
              

              - **info** *(float) --* 

                A numeric value corresponding to an informational finding.

                
              

              - **low** *(float) --* 

                A numeric value corresponding to a low severity finding.

                
              

              - **medium** *(float) --* 

                A numeric value corresponding to a medium severity finding.

                
              

              - **high** *(float) --* 

                A numeric value corresponding to a high severity finding.

                
              

              - **critical** *(float) --* 

                A numeric value corresponding to a critical finding.

                
          
        
      
        

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

          A token to resume pagination.

          
    