AWSCloudWatchMetricDatum

Objective-C

@interface AWSCloudWatchMetricDatum

Swift

class AWSCloudWatchMetricDatum

Encapsulates the information sent to either create a metric or add new values to be aggregated into an existing metric.

Required parameters: [MetricName]

  • Array of numbers that is used along with the Values array. Each number in the Count array is the number of times the corresponding value in the Values array occurred during the period.

    If you omit the Counts array, the default of 1 is used as the value for each count. If you include a Counts array, it must include the same amount of values as the Values array.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSNumber *> *_Nullable counts;

    Swift

    var counts: [NSNumber]? { get set }
  • The dimensions associated with the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSCloudWatchDimension *> *_Nullable dimensions;

    Swift

    var dimensions: [AWSCloudWatchDimension]? { get set }
  • The name of the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable metricName;

    Swift

    var metricName: String? { get set }
  • The statistical values for the metric.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSCloudWatchStatisticSet *_Nullable statisticValues;

    Swift

    var statisticValues: AWSCloudWatchStatisticSet? { get set }
  • Valid values are 1 and 60. Setting this to 1 specifies this metric as a high-resolution metric, so that CloudWatch stores the metric with sub-minute resolution down to one second. Setting this to 60 specifies this metric as a regular-resolution metric, which CloudWatch stores at 1-minute resolution. Currently, high resolution is available only for custom metrics. For more information about high-resolution metrics, see High-Resolution Metrics in the Amazon CloudWatch User Guide.

    This field is optional, if you do not specify it the default of 60 is used.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable storageResolution;

    Swift

    var storageResolution: NSNumber? { get set }
  • The time the metric data was received, expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable timestamp;

    Swift

    var timestamp: Date? { get set }
  • The unit of the metric.

    Declaration

    Objective-C

    @property (nonatomic) AWSCloudWatchStandardUnit unit;

    Swift

    var unit: AWSCloudWatchStandardUnit { get set }
  • The value for the metric.

    Although the parameter accepts numbers of type Double, CloudWatch rejects values that are either too small or too large. Values must be in the range of 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2). In addition, special values (for example, NaN, +Infinity, -Infinity) are not supported.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable value;

    Swift

    var value: NSNumber? { get set }
  • Array of numbers representing the values for the metric during the period. Each unique value is listed just once in this array, and the corresponding number in the Counts array specifies the number of times that value occurred during the period. You can include up to 150 unique values in each PutMetricData action that specifies a Values array.

    Although the Values array accepts numbers of type Double, CloudWatch rejects values that are either too small or too large. Values must be in the range of 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2). In addition, special values (for example, NaN, +Infinity, -Infinity) are not supported.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSNumber *> *_Nullable values;

    Swift

    var values: [NSNumber]? { get set }