:doc:`CodeArtifact <../../codeartifact>` / Paginator / ListRepositoriesInDomain

************************
ListRepositoriesInDomain
************************



.. py:class:: CodeArtifact.Paginator.ListRepositoriesInDomain

  ::

    
    paginator = client.get_paginator('list_repositories_in_domain')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`CodeArtifact.Client.list_repositories_in_domain`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codeartifact-2018-09-22/ListRepositoriesInDomain>`_    


    **Request Syntax**
    ::

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

      The name of the domain that contains the returned list of repositories.

      

    
    :type domainOwner: string
    :param domainOwner: 

      The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

      

    
    :type administratorAccount: string
    :param administratorAccount: 

      Filter the list of repositories to only include those that are managed by the Amazon Web Services account ID.

      

    
    :type repositoryPrefix: string
    :param repositoryPrefix: 

      A prefix used to filter returned repositories. Only repositories with names that start with ``repositoryPrefix`` are returned.

      

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

      
      ::

        {
            'repositories': [
                {
                    'name': 'string',
                    'administratorAccount': 'string',
                    'domainName': 'string',
                    'domainOwner': 'string',
                    'arn': 'string',
                    'description': 'string',
                    'createdTime': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **repositories** *(list) --* 

          The returned list of repositories.

          
          

          - *(dict) --* 

            Details about a repository, including its Amazon Resource Name (ARN), description, and domain information. The `ListRepositories <https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_ListRepositories.html>`__ operation returns a list of ``RepositorySummary`` objects.

            
            

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

              The name of the repository.

              
            

            - **administratorAccount** *(string) --* 

              The Amazon Web Services account ID that manages the repository.

              
            

            - **domainName** *(string) --* 

              The name of the domain that contains the repository.

              
            

            - **domainOwner** *(string) --* 

              The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

              
            

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

              The ARN of the repository.

              
            

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

              The description of the repository.

              
            

            - **createdTime** *(datetime) --* 

              A timestamp that represents the date and time the repository was created.

              
        
      
        

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

          A token to resume pagination.

          
    