:doc:`NetworkFlowMonitor <../../networkflowmonitor>` / Paginator / GetQueryResultsWorkloadInsightsTopContributors

**********************************************
GetQueryResultsWorkloadInsightsTopContributors
**********************************************



.. py:class:: NetworkFlowMonitor.Paginator.GetQueryResultsWorkloadInsightsTopContributors

  ::

    
    paginator = client.get_paginator('get_query_results_workload_insights_top_contributors')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`NetworkFlowMonitor.Client.get_query_results_workload_insights_top_contributors`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/GetQueryResultsWorkloadInsightsTopContributors>`_    


    **Request Syntax**
    ::

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

      The identifier for the scope that includes the resources you want to get data results for. A scope ID is an internally-generated identifier that includes all the resources for a specific root account.

      

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

      The identifier for the query. A query ID is an internally-generated identifier for a specific query returned from an API call to create a query.

      

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

      
      ::

        {
            'topContributors': [
                {
                    'accountId': 'string',
                    'localSubnetId': 'string',
                    'localAz': 'string',
                    'localVpcId': 'string',
                    'localRegion': 'string',
                    'remoteIdentifier': 'string',
                    'value': 123,
                    'localSubnetArn': 'string',
                    'localVpcArn': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **topContributors** *(list) --* 

          The top contributor network flows overall for a specific metric type, for example, the number of retransmissions.

          
          

          - *(dict) --* 

            A row for a top contributor for a scope.

            
            

            - **accountId** *(string) --* 

              The account ID for a specific row of data.

              
            

            - **localSubnetId** *(string) --* 

              The subnet identifier for the local resource.

              
            

            - **localAz** *(string) --* 

              The identifier for the Availability Zone where the local resource is located.

              
            

            - **localVpcId** *(string) --* 

              The identifier for the VPC for the local resource.

              
            

            - **localRegion** *(string) --* 

              The Amazon Web Services Region where the local resource is located.

              
            

            - **remoteIdentifier** *(string) --* 

              The identifier of a remote resource. For a VPC or subnet, this identifier is the VPC Amazon Resource Name (ARN) or subnet ARN. For an Availability Zone, this identifier is the AZ name, for example, us-west-2b. For an Amazon Web Services Region , this identifier is the Region name, for example, us-west-2.

              
            

            - **value** *(integer) --* 

              The value for a metric.

              
            

            - **localSubnetArn** *(string) --* 

              The Amazon Resource Name (ARN) of a local subnet.

              
            

            - **localVpcArn** *(string) --* 

              The Amazon Resource Name (ARN) of a local VPC.

              
        
      
        

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

          A token to resume pagination.

          
    