:doc:`PinpointSMSVoiceV2 <../../pinpoint-sms-voice-v2>` / Client / describe_verified_destination_numbers

*************************************
describe_verified_destination_numbers
*************************************



.. py:method:: PinpointSMSVoiceV2.Client.describe_verified_destination_numbers(**kwargs)

  

  Retrieves the specified verified destination numbers.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/pinpoint-sms-voice-v2-2022-03-31/DescribeVerifiedDestinationNumbers>`_  


  **Request Syntax**
  ::

    response = client.describe_verified_destination_numbers(
        VerifiedDestinationNumberIds=[
            'string',
        ],
        DestinationPhoneNumbers=[
            'string',
        ],
        Filters=[
            {
                'Name': 'status',
                'Values': [
                    'string',
                ]
            },
        ],
        NextToken='string',
        MaxResults=123
    )
    
  :type VerifiedDestinationNumberIds: list
  :param VerifiedDestinationNumberIds: 

    An array of VerifiedDestinationNumberid to retrieve.

    

  
    - *(string) --* 

    

  :type DestinationPhoneNumbers: list
  :param DestinationPhoneNumbers: 

    An array of verified destination phone number, in E.164 format.

    

  
    - *(string) --* 

    

  :type Filters: list
  :param Filters: 

    An array of VerifiedDestinationNumberFilter objects to filter the results.

    

  
    - *(dict) --* 

      The filter definition for filtering verified destination phone numbers that meets a specified criteria.

      

    
      - **Name** *(string) --* **[REQUIRED]** 

        The name of the attribute to filter on.

        

      
      - **Values** *(list) --* **[REQUIRED]** 

        An array of values to filter on.

        

      
        - *(string) --* 

        
    
    

  :type NextToken: string
  :param NextToken: 

    The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per each request.

    

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

    
    ::

      {
          'VerifiedDestinationNumbers': [
              {
                  'VerifiedDestinationNumberArn': 'string',
                  'VerifiedDestinationNumberId': 'string',
                  'DestinationPhoneNumber': 'string',
                  'Status': 'PENDING'|'VERIFIED',
                  'CreatedTimestamp': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **VerifiedDestinationNumbers** *(list) --* 

        An array of VerifiedDestinationNumberInformation objects

        
        

        - *(dict) --* 

          Provides information about the requested verified destintion phone number.

          
          

          - **VerifiedDestinationNumberArn** *(string) --* 

            The Amazon Resource Name (ARN) for the verified destination phone number.

            
          

          - **VerifiedDestinationNumberId** *(string) --* 

            The unique identifier for the verified destination phone number.

            
          

          - **DestinationPhoneNumber** *(string) --* 

            The verified destination phone number, in E.164 format.

            
          

          - **Status** *(string) --* 

            The status of the verified destination phone number.

             

            
            * ``PENDING``: The phone number hasn't been verified yet.
             
            * ``VERIFIED``: The phone number is verified and can receive messages.
            

            
          

          - **CreatedTimestamp** *(datetime) --* 

            The time when the destination phone number was created, in `UNIX epoch time <https://www.epochconverter.com/>`__ format.

            
      
    
      

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

        The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.

        
  
  **Exceptions**
  
  *   :py:class:`PinpointSMSVoiceV2.Client.exceptions.ThrottlingException`

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

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

  
  *   :py:class:`PinpointSMSVoiceV2.Client.exceptions.ValidationException`

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

  