describeMultiplex method
Gets details about a multiplex.
May throw BadGatewayException.
May throw BadRequestException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter multiplexId :
The ID of the multiplex.
Implementation
Future<DescribeMultiplexResponse> describeMultiplex({
required String multiplexId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/prod/multiplexes/${Uri.encodeComponent(multiplexId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeMultiplexResponse.fromJson(response);
}