Module Values.ScalableTargetActionSource

Represents the minimum and maximum capacity for a scheduled action.

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

    The minimum capacity. When the scheduled action runs, the resource will have at least this much capacity, but it might have more depending on other settings, such as the target utilization level of a target tracking scaling policy.

    *)
  2. maxCapacity : ResourceCapacity.t option;
    (*

    The maximum capacity. Although you can specify a large maximum capacity, note that service quotas may impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see Service endpoints and quotas in the Amazon Web Services General Reference.

    *)
}
Sourceval make : ?minCapacity:??? -> ?maxCapacity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ResourceCapacity.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