deleteGroupingConfiguration method

Future<void> deleteGroupingConfiguration()

Deletes the grouping configuration for this account. This removes all custom grouping attribute definitions that were previously configured.

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

Implementation

Future<void> deleteGroupingConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/grouping-configuration',
    exceptionFnMap: _exceptionFns,
  );
}