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