getMulticastGroup method

Future<GetMulticastGroupResponse> getMulticastGroup({
  1. required String id,
})

Gets information about a multicast group.

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

Implementation

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