deleteProfilingGroup method

Future<void> deleteProfilingGroup({
  1. required String profilingGroupName,
})

Deletes a profiling group.

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

Parameter profilingGroupName : The name of the profiling group to delete.

Implementation

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