AWSAutoScalingLoadForecast
Objective-C
@interface AWSAutoScalingLoadForecast
Swift
class AWSAutoScalingLoadForecast
A GetPredictiveScalingForecast
call returns the load forecast for a predictive scaling policy. This structure includes the data points for that load forecast, along with the timestamps of those data points and the metric specification.
Required parameters: [Timestamps, Values, MetricSpecification]
-
The metric specification for the load forecast.
Declaration
Objective-C
@property (nonatomic, strong) AWSAutoScalingPredictiveScalingMetricSpecification *_Nullable metricSpecification;
Swift
var metricSpecification: AWSAutoScalingPredictiveScalingMetricSpecification? { get set }
-
The timestamps for the data points, in UTC format.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSDate *> *_Nullable timestamps;
Swift
var timestamps: [Date]? { get set }
-
The values of the data points.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSNumber *> *_Nullable values;
Swift
var values: [NSNumber]? { get set }