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

**********************************
create_verified_destination_number
**********************************



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

  

  You can only send messages to verified destination numbers when your account is in the sandbox. You can add up to 10 verified destination numbers.

  

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


  **Request Syntax**
  ::

    response = client.create_verified_destination_number(
        DestinationPhoneNumber='string',
        Tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ],
        ClientToken='string'
    )
    
  :type DestinationPhoneNumber: string
  :param DestinationPhoneNumber: **[REQUIRED]** 

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

    

  
  :type Tags: list
  :param Tags: 

    An array of tags (key and value pairs) to associate with the destination number.

    

  
    - *(dict) --* 

      The list of tags to be added to the specified topic.

      

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

        The key identifier, or name, of the tag.

        

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

        The string value associated with the key of the tag.

        

      
    

  :type ClientToken: string
  :param ClientToken: 

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, a randomly generated token is used for the request to ensure idempotency.

    This field is autopopulated if not provided.

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

    
    ::

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

    

    - *(dict) --* 
      

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

        
      

      - **Tags** *(list) --* 

        An array of tags (key and value pairs) to associate with the destination number.

        
        

        - *(dict) --* 

          The list of tags to be added to the specified topic.

          
          

          - **Key** *(string) --* 

            The key identifier, or name, of the tag.

            
          

          - **Value** *(string) --* 

            The string value associated with the key of the tag.

            
      
    
      

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

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

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

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

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

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

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

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

  