deleteConfigurationSet method

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

Deletes an existing configuration set.

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

Parameter configurationSetName : ConfigurationSetName

Implementation

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