getMulticastGroupSession method

Future<GetMulticastGroupSessionResponse> getMulticastGroupSession({
  1. required String id,
})

Gets information about a multicast group session.

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

Implementation

Future<GetMulticastGroupSessionResponse> getMulticastGroupSession({
  required String id,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/multicast-groups/${Uri.encodeComponent(id)}/session',
    exceptionFnMap: _exceptionFns,
  );
  return GetMulticastGroupSessionResponse.fromJson(response);
}