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