describeInput method
Produces details about an input
May throw BadGatewayException.
May throw BadRequestException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter inputId :
Unique ID of the input
Implementation
Future<DescribeInputResponse> describeInput({
required String inputId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/prod/inputs/${Uri.encodeComponent(inputId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeInputResponse.fromJson(response);
}