deleteMLConfiguration method

Future<void> deleteMLConfiguration({
  1. required String membershipIdentifier,
})

Deletes a ML modeling configuration.

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

Parameter membershipIdentifier : The membership ID of the of the member that is deleting the ML modeling configuration.

Implementation

Future<void> deleteMLConfiguration({
  required String membershipIdentifier,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/memberships/${Uri.encodeComponent(membershipIdentifier)}/ml-configurations',
    exceptionFnMap: _exceptionFns,
  );
}