AWSCloudWatchDatapoint
Objective-C
@interface AWSCloudWatchDatapoint
Swift
class AWSCloudWatchDatapoint
Encapsulates the statistical data that CloudWatch computes from metric data.
-
The average of the metric values that correspond to the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable average;
Swift
var average: NSNumber? { get set }
-
The percentile statistic for the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSNumber *> *_Nullable extendedStatistics;
Swift
var extendedStatistics: [String : NSNumber]? { get set }
-
The maximum metric value for the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maximum;
Swift
var maximum: NSNumber? { get set }
-
The minimum metric value for the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable minimum;
Swift
var minimum: NSNumber? { get set }
-
The number of metric values that contributed to the aggregate value of this data point.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable sampleCount;
Swift
var sampleCount: NSNumber? { get set }
-
The sum of the metric values for the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable sum;
Swift
var sum: NSNumber? { get set }
-
The time stamp used for the data point.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable timestamp;
Swift
var timestamp: Date? { get set }
-
The standard unit for the data point.
Declaration
Objective-C
@property (nonatomic) AWSCloudWatchStandardUnit unit;
Swift
var unit: AWSCloudWatchStandardUnit { get set }