Statistics

public struct Statistics : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • avg

    For a numeric field, the average value in the field.

    Declaration

    Swift

    public let avg: Double?
  • The number of values in the field.

    Declaration

    Swift

    public let count: Int?
  • The number of distinct values in the field.

    Declaration

    Swift

    public let countDistinct: Int?
  • The number of NAN (not a number) values in the field.

    Declaration

    Swift

    public let countNan: Int?
  • The number of null values in the field.

    Declaration

    Swift

    public let countNull: Int?
  • max

    For a numeric field, the maximum value in the field.

    Declaration

    Swift

    public let max: String?
  • min

    For a numeric field, the minimum value in the field.

    Declaration

    Swift

    public let min: String?
  • For a numeric field, the standard deviation.

    Declaration

    Swift

    public let stddev: Double?
  • Undocumented

    Declaration

    Swift

    public init(avg: Double? = nil, count: Int? = nil, countDistinct: Int? = nil, countNan: Int? = nil, countNull: Int? = nil, max: String? = nil, min: String? = nil, stddev: Double? = nil)