describeInput method

Future<DescribeInputResponse> describeInput({
  1. required String inputId,
})

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);
}