deleteConfigurationManager method

Future<void> deleteConfigurationManager({
  1. required String managerArn,
})

Deletes a configuration manager.

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

Parameter managerArn : The ID of the configuration manager.

Implementation

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