MetricInfo
public struct MetricInfo : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A dimension is a name/value pair that is part of the identity of a metric. Every metric has specific characteristics that describe it, and you can think of dimensions as categories for those characteristics. These dimensions are part of the CloudWatch Metric Identity that measures usage against a particular service quota.
Declaration
Swift
public let metricDimensions: [String : String]?
-
The name of the CloudWatch metric that measures usage of a service quota. This is a required field.
Declaration
Swift
public let metricName: String?
-
The namespace of the metric. The namespace is a container for CloudWatch metrics. You can specify a name for the namespace when you create a metric.
Declaration
Swift
public let metricNamespace: String?
-
Statistics are metric data aggregations over specified periods of time. This is the recommended statistic to use when comparing usage in the CloudWatch Metric against your Service Quota.
Declaration
Swift
public let metricStatisticRecommendation: String?
-
Undocumented
Declaration
Swift
public init(metricDimensions: [String : String]? = nil, metricName: String? = nil, metricNamespace: String? = nil, metricStatisticRecommendation: String? = nil)