deleteEnforcedGuardrailConfiguration method

Future<void> deleteEnforcedGuardrailConfiguration({
  1. required String configId,
})

Deletes the account-level enforced guardrail configuration.

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

Parameter configId : Unique ID for the account enforced configuration.

Implementation

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