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

*******************************************
get_voice_connector_streaming_configuration
*******************************************



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

  

  Retrieves the streaming configuration details for the specified Amazon Chime SDK Voice Connector. Shows whether media streaming is enabled for sending to Amazon Kinesis. It also shows the retention period, in hours, for the Amazon Kinesis data.

  

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


  **Request Syntax**
  ::

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

    The Voice Connector ID.

    

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

    
    ::

      {
          'StreamingConfiguration': {
              'DataRetentionInHours': 123,
              'Disabled': True|False,
              'StreamingNotificationTargets': [
                  {
                      'NotificationTarget': 'EventBridge'|'SNS'|'SQS'
                  },
              ],
              'MediaInsightsConfiguration': {
                  'Disabled': True|False,
                  'ConfigurationArn': 'string'
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **StreamingConfiguration** *(dict) --* 

        The details of the streaming configuration.

        
        

        - **DataRetentionInHours** *(integer) --* 

          The amount of time, in hours, to the Kinesis data.

          
        

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

          When true, streaming to Kinesis is off.

          
        

        - **StreamingNotificationTargets** *(list) --* 

          The streaming notification targets.

          
          

          - *(dict) --* 

            The target recipient for a streaming configuration notification.

            
            

            - **NotificationTarget** *(string) --* 

              The streaming notification target.

              
        
      
        

        - **MediaInsightsConfiguration** *(dict) --* 

          The call analytics configuration.

          
          

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

            Denotes the configuration as enabled or disabled.

            
          

          - **ConfigurationArn** *(string) --* 

            The configuration's ARN.

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

  