AWSAutoScalingCapacityForecast

Objective-C

@interface AWSAutoScalingCapacityForecast

Swift

class AWSAutoScalingCapacityForecast

A GetPredictiveScalingForecast call returns the capacity forecast for a predictive scaling policy. This structure includes the data points for that capacity forecast, along with the timestamps of those data points.

Required parameters: [Timestamps, Values]

  • 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 }