Aggregates

public struct Aggregates : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The average (mean) value of the time series over a time interval window.

    Declaration

    Swift

    public let average: Double?
  • The count of data points in the time series over a time interval window.

    Declaration

    Swift

    public let count: Double?
  • The maximum value of the time series over a time interval window.

    Declaration

    Swift

    public let maximum: Double?
  • The minimum value of the time series over a time interval window.

    Declaration

    Swift

    public let minimum: Double?
  • The standard deviation of the time series over a time interval window.

    Declaration

    Swift

    public let standardDeviation: Double?
  • sum

    The sum of the time series over a time interval window.

    Declaration

    Swift

    public let sum: Double?
  • Undocumented

    Declaration

    Swift

    public init(average: Double? = nil, count: Double? = nil, maximum: Double? = nil, minimum: Double? = nil, standardDeviation: Double? = nil, sum: Double? = nil)