:doc:`VPCLattice <../../vpc-lattice>` / Client / list_domain_verifications

*************************
list_domain_verifications
*************************



.. py:method:: VPCLattice.Client.list_domain_verifications(**kwargs)

  

  Lists the domain verifications.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/ListDomainVerifications>`_  


  **Request Syntax**
  ::

    response = client.list_domain_verifications(
        maxResults=123,
        nextToken='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return.

    

  
  :type nextToken: string
  :param nextToken: 

    A pagination token for the next page of results.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'items': [
              {
                  'id': 'string',
                  'arn': 'string',
                  'domainName': 'string',
                  'status': 'VERIFIED'|'PENDING'|'VERIFICATION_TIMED_OUT',
                  'txtMethodConfig': {
                      'value': 'string',
                      'name': 'string'
                  },
                  'createdAt': datetime(2015, 1, 1),
                  'lastVerifiedTime': datetime(2015, 1, 1),
                  'tags': {
                      'string': 'string'
                  }
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **items** *(list) --* 

        Information about the domain verifications.

        
        

        - *(dict) --* 

          Summary information about a domain verification.

          
          

          - **id** *(string) --* 

            The ID of the domain verification.

            
          

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

            The Amazon Resource Name (ARN) of the domain verification.

            
          

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

            The domain name being verified.

            
          

          - **status** *(string) --* 

            The current status of the domain verification process.

            
          

          - **txtMethodConfig** *(dict) --* 

            The TXT record configuration used for domain verification.

            
            

            - **value** *(string) --* 

              The value that must be added to the TXT record for domain verification.

              
            

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

              The name of the TXT record that must be created for domain verification.

              
        
          

          - **createdAt** *(datetime) --* 

            The date and time that the domain verification was created, in ISO-8601 format.

            
          

          - **lastVerifiedTime** *(datetime) --* 

            The date and time that the domain was last successfully verified, in ISO-8601 format.

            
          

          - **tags** *(dict) --* 

            The tags associated with the domain verification.

            
            

            - *(string) --* 

              The key of the tag.

               

              Constraints: Tag keys are case-sensitive and accept a maximum of 128 Unicode characters. Valid characters are Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @ May not begin with ``aws:``.

              
              

              - *(string) --* 

                The value of the tag.

                 

                Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters. Valid characters are Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @

                
        
      
      
    
      

      - **nextToken** *(string) --* 

        A pagination token for the next page of results.

        
  
  **Exceptions**
  
  *   :py:class:`VPCLattice.Client.exceptions.ValidationException`

  
  *   :py:class:`VPCLattice.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`VPCLattice.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`VPCLattice.Client.exceptions.ThrottlingException`

  
  *   :py:class:`VPCLattice.Client.exceptions.InternalServerException`

  