deleteConfigurationSet method

Future<void> deleteConfigurationSet({
  1. required String configurationSetName,
})

Deletes an existing configuration set.

May throw BadRequestException. May throw InternalServiceErrorException. May throw NotFoundException. May throw TooManyRequestsException.

Parameter configurationSetName : ConfigurationSetName

Implementation

Future<void> deleteConfigurationSet({
  required String configurationSetName,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/v1/sms-voice/configuration-sets/${Uri.encodeComponent(configurationSetName)}',
    exceptionFnMap: _exceptionFns,
  );
}