Statistics
public struct Statistics : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The average of the aggregated field values.
Declaration
Swift
public let average: Double?
-
The count of things that match the query.
Declaration
Swift
public let count: Int?
-
The maximum aggregated field value.
Declaration
Swift
public let maximum: Double?
-
The minimum aggregated field value.
Declaration
Swift
public let minimum: Double?
-
The standard deviation of the aggregated field values.
Declaration
Swift
public let stdDeviation: Double?
-
The sum of the aggregated field values.
Declaration
Swift
public let sum: Double?
-
The sum of the squares of the aggregated field values.
Declaration
Swift
public let sumOfSquares: Double?
-
The variance of the aggregated field values.
Declaration
Swift
public let variance: Double?
-
Undocumented
Declaration
Swift
public init(average: Double? = nil, count: Int? = nil, maximum: Double? = nil, minimum: Double? = nil, stdDeviation: Double? = nil, sum: Double? = nil, sumOfSquares: Double? = nil, variance: Double? = nil)