deleteVoiceConnectorStreamingConfiguration method

Future<void> deleteVoiceConnectorStreamingConfiguration({
  1. required String voiceConnectorId,
})

Deletes a Voice Connector's streaming configuration.

May throw BadRequestException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceFailureException. May throw ServiceUnavailableException. May throw ThrottledClientException. May throw UnauthorizedClientException.

Parameter voiceConnectorId : The Voice Connector ID.

Implementation

Future<void> deleteVoiceConnectorStreamingConfiguration({
  required String voiceConnectorId,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/voice-connectors/${Uri.encodeComponent(voiceConnectorId)}/streaming-configuration',
    exceptionFnMap: _exceptionFns,
  );
}