deleteResourceConfiguration method

Future<void> deleteResourceConfiguration({
  1. required String resourceConfigurationIdentifier,
})

Deletes the specified resource configuration.

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

Parameter resourceConfigurationIdentifier : The ID or ARN of the resource configuration.

Implementation

Future<void> deleteResourceConfiguration({
  required String resourceConfigurationIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/resourceconfigurations/${Uri.encodeComponent(resourceConfigurationIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}