:doc:`ChimeSDKVoice <../../chime-sdk-voice>` / Client / get_voice_connector_termination

*******************************
get_voice_connector_termination
*******************************



.. py:method:: ChimeSDKVoice.Client.get_voice_connector_termination(**kwargs)

  

  Retrieves the termination setting details for the specified Voice Connector.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorTermination>`_  


  **Request Syntax**
  ::

    response = client.get_voice_connector_termination(
        VoiceConnectorId='string'
    )
    
  :type VoiceConnectorId: string
  :param VoiceConnectorId: **[REQUIRED]** 

    The Voice Connector ID.

    

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

    
    ::

      {
          'Termination': {
              'CpsLimit': 123,
              'DefaultPhoneNumber': 'string',
              'CallingRegions': [
                  'string',
              ],
              'CidrAllowedList': [
                  'string',
              ],
              'Disabled': True|False
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Termination** *(dict) --* 

        The termination setting details.

        
        

        - **CpsLimit** *(integer) --* 

          The limit on calls per second. Max value based on account service quota. Default value of 1.

          
        

        - **DefaultPhoneNumber** *(string) --* 

          The default outbound calling number.

          
        

        - **CallingRegions** *(list) --* 

          The countries to which calls are allowed, in ISO 3166-1 alpha-2 format. Required.

          
          

          - *(string) --* 
      
        

        - **CidrAllowedList** *(list) --* 

          The IP addresses allowed to make calls, in CIDR format.

          
          

          - *(string) --* 
      
        

        - **Disabled** *(boolean) --* 

          When termination is disabled, outbound calls cannot be made.

          
    
  
  **Exceptions**
  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.UnauthorizedClientException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.NotFoundException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ForbiddenException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.BadRequestException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ThrottledClientException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ServiceUnavailableException`

  
  *   :py:class:`ChimeSDKVoice.Client.exceptions.ServiceFailureException`

  