CustomizedLoadMetricSpecification

public struct CustomizedLoadMetricSpecification : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The dimensions of the metric. Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized load metric specification.

    Declaration

    Swift

    public let dimensions: [MetricDimension]?
  • The name of the metric.

    Declaration

    Swift

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

    Declaration

    Swift

    public let namespace: String
  • The statistic of the metric. Currently, the value must always be Sum.

    Declaration

    Swift

    public let statistic: MetricStatistic
  • The unit of the metric.

    Declaration

    Swift

    public let unit: String?
  • Undocumented

    Declaration

    Swift

    public init(dimensions: [MetricDimension]? = nil, metricName: String, namespace: String, statistic: MetricStatistic, unit: String? = nil)