describeAppInstanceBot method

Future<DescribeAppInstanceBotResponse> describeAppInstanceBot({
  1. required String appInstanceBotArn,
})

The AppInstanceBot's information.

May throw BadRequestException. May throw ForbiddenException. May throw NotFoundException. May throw ServiceFailureException. May throw ServiceUnavailableException. May throw ThrottledClientException. May throw UnauthorizedClientException.

Parameter appInstanceBotArn : The ARN of the AppInstanceBot.

Implementation

Future<DescribeAppInstanceBotResponse> describeAppInstanceBot({
  required String appInstanceBotArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/app-instance-bots/${Uri.encodeComponent(appInstanceBotArn)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeAppInstanceBotResponse.fromJson(response);
}