Module Values.SuspendedStateSource

Specifies whether the scaling activities for a scalable target are in a suspended state.

Sourcetype nonrec t = {
  1. dynamicScalingInSuspended : ScalingSuspended.t option;
    (*

    Whether scale in by a target tracking scaling policy or a step scaling policy is suspended. Set the value to true if you don't want Application Auto Scaling to remove capacity when a scaling policy is triggered. The default is false.

    *)
  2. dynamicScalingOutSuspended : ScalingSuspended.t option;
    (*

    Whether scale out by a target tracking scaling policy or a step scaling policy is suspended. Set the value to true if you don't want Application Auto Scaling to add capacity when a scaling policy is triggered. The default is false.

    *)
  3. scheduledScalingSuspended : ScalingSuspended.t option;
    (*

    Whether scheduled scaling is suspended. Set the value to true if you don't want Application Auto Scaling to add or remove capacity by initiating scheduled actions. The default is false.

    *)
}
Sourceval make : ?dynamicScalingInSuspended:??? -> ?dynamicScalingOutSuspended:??? -> ?scheduledScalingSuspended:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ScalingSuspended.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t