deleteConfiguration method

Future<void> deleteConfiguration({
  1. required String name,
})

Delete an existing configuration.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw RequestTimeoutException. May throw ResourceNotFoundException. May throw ServiceQuotaExceededException. May throw ThrottlingException. May throw ValidationException.

Parameter name : Configuration name to delete.

Implementation

Future<void> deleteConfiguration({
  required String name,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/configuration/${Uri.encodeComponent(name)}',
    exceptionFnMap: _exceptionFns,
  );
}