deleteGroup method
Deletes a group.
May throw BadRequestException.
Parameter groupId :
The ID of the Greengrass group.
Implementation
Future<void> deleteGroup({
required String groupId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/greengrass/groups/${Uri.encodeComponent(groupId)}',
exceptionFnMap: _exceptionFns,
);
}