DescribeAlarmsForMetricInput

public struct DescribeAlarmsForMetricInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The dimensions associated with the metric. If the metric has any associated dimensions, you must specify them in order for the call to succeed.

    Declaration

    Swift

    public let dimensions: [Dimension]?
  • The percentile statistic for the metric. Specify a value between p0.0 and p100.

    Declaration

    Swift

    public let extendedStatistic: String?
  • The name of the metric.

    Declaration

    Swift

    public let metricName: String
  • The namespace of the metric.

    Declaration

    Swift

    public let namespace: String
  • The period, in seconds, over which the statistic is applied.

    Declaration

    Swift

    public let period: Int?
  • The statistic for the metric, other than percentiles. For percentile statistics, use ExtendedStatistics.

    Declaration

    Swift

    public let statistic: Statistic?
  • The unit for the metric.

    Declaration

    Swift

    public let unit: StandardUnit?
  • Undocumented

    Declaration

    Swift

    public init(dimensions: [Dimension]? = nil, extendedStatistic: String? = nil, metricName: String, namespace: String, period: Int? = nil, statistic: Statistic? = nil, unit: StandardUnit? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws