describeAppInstanceUser method

Future<DescribeAppInstanceUserResponse> describeAppInstanceUser({
  1. required String appInstanceUserArn,
})

Returns the full details of an AppInstanceUser.

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

Parameter appInstanceUserArn : The ARN of the AppInstanceUser.

Implementation

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