:doc:`CloudFront <../../cloudfront>` / Paginator / ListDomainConflicts

*******************
ListDomainConflicts
*******************



.. py:class:: CloudFront.Paginator.ListDomainConflicts

  ::

    
    paginator = client.get_paginator('list_domain_conflicts')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`CloudFront.Client.list_domain_conflicts`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListDomainConflicts>`_    


    **Request Syntax**
    ::

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

      The domain to check for conflicts.

      

    
    :type DomainControlValidationResource: dict
    :param DomainControlValidationResource: **[REQUIRED]** 

      The distribution resource identifier. This can be the standard distribution or distribution tenant that has a valid certificate, which covers the domain that you specify.

      

    
      - **DistributionId** *(string) --* 

        The ID of the multi-tenant distribution.

        

      
      - **DistributionTenantId** *(string) --* 

        The ID of the distribution tenant.

        

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

      
      ::

        {
            'DomainConflicts': [
                {
                    'Domain': 'string',
                    'ResourceType': 'distribution'|'distribution-tenant',
                    'ResourceId': 'string',
                    'AccountId': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **DomainConflicts** *(list) --* 

          Contains details about the domain conflicts.

          
          

          - *(dict) --* 

            Contains information about the domain conflict. Use this information to determine the affected domain, the related resource, and the affected Amazon Web Services account.

            
            

            - **Domain** *(string) --* 

              The domain used to find existing conflicts for domain configurations.

              
            

            - **ResourceType** *(string) --* 

              The CloudFront resource type that has a domain conflict.

              
            

            - **ResourceId** *(string) --* 

              The ID of the resource that has a domain conflict.

              
            

            - **AccountId** *(string) --* 

              The ID of the Amazon Web Services account for the domain conflict.

              
        
      
        

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

          A token to resume pagination.

          
    