cancelMulticastGroupSession method
Cancels an existing multicast group session.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<void> cancelMulticastGroupSession({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/multicast-groups/${Uri.encodeComponent(id)}/session',
exceptionFnMap: _exceptionFns,
);
}