:doc:`AccessAnalyzer <../../accessanalyzer>` / Paginator / ListAnalyzedResources

*********************
ListAnalyzedResources
*********************



.. py:class:: AccessAnalyzer.Paginator.ListAnalyzedResources

  ::

    
    paginator = client.get_paginator('list_analyzed_resources')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`AccessAnalyzer.Client.list_analyzed_resources`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/ListAnalyzedResources>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          analyzerArn='string',
          resourceType='AWS::S3::Bucket'|'AWS::IAM::Role'|'AWS::SQS::Queue'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::KMS::Key'|'AWS::SecretsManager::Secret'|'AWS::EFS::FileSystem'|'AWS::EC2::Snapshot'|'AWS::ECR::Repository'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBClusterSnapshot'|'AWS::SNS::Topic'|'AWS::S3Express::DirectoryBucket'|'AWS::DynamoDB::Table'|'AWS::DynamoDB::Stream'|'AWS::IAM::User',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type analyzerArn: string
    :param analyzerArn: **[REQUIRED]** 

      The `ARN of the analyzer <https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-getting-started.html#permission-resources>`__ to retrieve a list of analyzed resources from.

      

    
    :type resourceType: string
    :param resourceType: 

      The type of resource.

      

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

      
      ::

        {
            'analyzedResources': [
                {
                    'resourceArn': 'string',
                    'resourceOwnerAccount': 'string',
                    'resourceType': 'AWS::S3::Bucket'|'AWS::IAM::Role'|'AWS::SQS::Queue'|'AWS::Lambda::Function'|'AWS::Lambda::LayerVersion'|'AWS::KMS::Key'|'AWS::SecretsManager::Secret'|'AWS::EFS::FileSystem'|'AWS::EC2::Snapshot'|'AWS::ECR::Repository'|'AWS::RDS::DBSnapshot'|'AWS::RDS::DBClusterSnapshot'|'AWS::SNS::Topic'|'AWS::S3Express::DirectoryBucket'|'AWS::DynamoDB::Table'|'AWS::DynamoDB::Stream'|'AWS::IAM::User'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 

        The response to the request.

        
        

        - **analyzedResources** *(list) --* 

          A list of resources that were analyzed.

          
          

          - *(dict) --* 

            Contains the ARN of the analyzed resource.

            
            

            - **resourceArn** *(string) --* 

              The ARN of the analyzed resource.

              
            

            - **resourceOwnerAccount** *(string) --* 

              The Amazon Web Services account ID that owns the resource.

              
            

            - **resourceType** *(string) --* 

              The type of resource that was analyzed.

              
        
      
        

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

          A token to resume pagination.

          
    