QueryResult
public struct QueryResult : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember] -
Contains the facet results. A FacetResult contains the counts for each attribute key that was specified in the Facets input parameter.
Declaration
Swift
public let facetResults: [FacetResult]? -
The unique identifier for the search. You use QueryId to identify the search when using the feedback API.
Declaration
Swift
public let queryId: String? -
The results of the search.
Declaration
Swift
public let resultItems: [QueryResultItem]? -
The number of items returned by the search. Use this to determine when you have requested the last set of results.
Declaration
Swift
public let totalNumberOfResults: Int? -
Undocumented
Declaration
Swift
public init(facetResults: [FacetResult]? = nil, queryId: String? = nil, resultItems: [QueryResultItem]? = nil, totalNumberOfResults: Int? = nil)
View on GitHub
QueryResult Structure Reference