Module Values.WarmPoolConfigurationSource

Describes a warm pool configuration.

Sourcetype nonrec t = {
  1. maxGroupPreparedCapacity : MaxGroupPreparedCapacity.t option;
    (*

    The maximum number of instances that are allowed to be in the warm pool or in any state except Terminated for the Auto Scaling group.

    *)
  2. minSize : WarmPoolMinSize.t option;
    (*

    The minimum number of instances to maintain in the warm pool.

    *)
  3. poolState : WarmPoolState.t option;
    (*

    The instance state to transition to after the lifecycle actions are complete.

    *)
  4. status : WarmPoolStatus.t option;
    (*

    The status of a warm pool that is marked for deletion.

    *)
  5. instanceReusePolicy : InstanceReusePolicy.t option;
    (*

    The instance reuse policy.

    *)
}
Sourceval make : ?maxGroupPreparedCapacity:??? -> ?minSize:??? -> ?poolState:??? -> ?status:??? -> ?instanceReusePolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxGroupPreparedCapacity.t | `Structure of (string * [> `Boolean of ReuseOnScaleIn.t ]) 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