Module Values_2.DynamicScalingConfigurationSource

An object with the recommended values for you to specify when creating an autoscaling policy.

Sourcetype nonrec t = {
  1. minCapacity : Values_0.Integer.t option;
    (*

    The recommended minimum capacity to specify for your autoscaling policy.

    *)
  2. maxCapacity : Values_0.Integer.t option;
    (*

    The recommended maximum capacity to specify for your autoscaling policy.

    *)
  3. scaleInCooldown : Values_0.Integer.t option;
    (*

    The recommended scale in cooldown time for your autoscaling policy.

    *)
  4. scaleOutCooldown : Values_0.Integer.t option;
    (*

    The recommended scale out cooldown time for your autoscaling policy.

    *)
  5. scalingPolicies : ScalingPolicies.t option;
    (*

    An object of the scaling policies for each metric.

    *)
}
Sourceval make : ?minCapacity:??? -> ?maxCapacity:??? -> ?scaleInCooldown:??? -> ?scaleOutCooldown:??? -> ?scalingPolicies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t ]) list ]) list ]) list ]) list ] list ]) 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