InsightRuleMetricDatapoint

public struct InsightRuleMetricDatapoint : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The average value from all contributors during the time period represented by that data point. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let average: Double?
  • The maximum value provided by one contributor during this timestamp. Each timestamp is evaluated separately, so the identity of the max contributor could be different for each timestamp. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let maxContributorValue: Double?
  • The maximum value from a single occurence from a single contributor during the time period represented by that data point. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let maximum: Double?
  • The minimum value from a single contributor during the time period represented by that data point. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let minimum: Double?
  • The number of occurrences that matched the rule during this data point. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let sampleCount: Double?
  • sum

    The sum of the values from all contributors during the time period represented by that data point. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let sum: Double?
  • The timestamp of the data point.

    Declaration

    Swift

    public let timestamp: TimeStamp
  • The number of unique contributors who published data during this timestamp. This statistic is returned only if you included it in the Metrics array in your request.

    Declaration

    Swift

    public let uniqueContributors: Double?
  • Undocumented

    Declaration

    Swift

    public init(average: Double? = nil, maxContributorValue: Double? = nil, maximum: Double? = nil, minimum: Double? = nil, sampleCount: Double? = nil, sum: Double? = nil, timestamp: TimeStamp, uniqueContributors: Double? = nil)