Hits

public struct Hits : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A cursor that can be used to retrieve the next set of matching documents when you want to page through a large result set.

    Declaration

    Swift

    public let cursor: String?
  • The total number of documents that match the search request.

    Declaration

    Swift

    public let found: Int64?
  • hit

    A document that matches the search request.

    Declaration

    Swift

    public let hit: [Hit]?
  • The index of the first matching document.

    Declaration

    Swift

    public let start: Int64?
  • Undocumented

    Declaration

    Swift

    public init(cursor: String? = nil, found: Int64? = nil, hit: [Hit]? = nil, start: Int64? = nil)