describeAppInstanceUserEndpoint method

Future<DescribeAppInstanceUserEndpointResponse> describeAppInstanceUserEndpoint({
  1. required String appInstanceUserArn,
  2. required String endpointId,
})

Returns the full details of an AppInstanceUserEndpoint.

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.

Parameter endpointId : The unique identifier of the AppInstanceUserEndpoint.

Implementation

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