FieldStats
public struct FieldStats : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The number of documents that contain a value in the specified field in the result set.
Declaration
Swift
public let count: Int64?
-
The maximum value found in the specified field in the result set. If the field is numeric (int, int-array, double, or double-array), max is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, max is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.
Declaration
Swift
public let max: String?
-
The average of the values found in the specified field in the result set. If the field is numeric (int, int-array, double, or double-array), mean is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, mean is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.
Declaration
Swift
public let mean: String?
-
The minimum value found in the specified field in the result set. If the field is numeric (int, int-array, double, or double-array), min is the string representation of a double-precision 64-bit floating point value. If the field is date or date-array, min is the string representation of a date with the format specified in IETF RFC3339: yyyy-mm-ddTHH:mm:ss.SSSZ.
Declaration
Swift
public let min: String?
-
The number of documents that do not contain a value in the specified field in the result set.
Declaration
Swift
public let missing: Int64?
-
The standard deviation of the values in the specified field in the result set.
Declaration
Swift
public let stddev: Double?
-
The sum of the field values across the documents in the result set. null for date fields.
Declaration
Swift
public let sum: Double?
-
The sum of all field values in the result set squared.
Declaration
Swift
public let sumOfSquares: Double?
-
Undocumented
Declaration
Swift
public init(count: Int64? = nil, max: String? = nil, mean: String? = nil, min: String? = nil, missing: Int64? = nil, stddev: Double? = nil, sum: Double? = nil, sumOfSquares: Double? = nil)