Module Values_0.IdleSettingsSource

Settings related to idle shutdown of Studio applications.

Sourcetype nonrec t = {
  1. lifecycleManagement : LifecycleManagement.t option;
    (*

    Indicates whether idle shutdown is activated for the application type.

    *)
  2. idleTimeoutInMinutes : IdleTimeoutInMinutes.t option;
    (*

    The time that SageMaker waits after the application becomes idle before shutting it down.

    *)
  3. minIdleTimeoutInMinutes : IdleTimeoutInMinutes.t option;
    (*

    The minimum value in minutes that custom idle shutdown can be set to by the user.

    *)
  4. maxIdleTimeoutInMinutes : IdleTimeoutInMinutes.t option;
    (*

    The maximum value in minutes that custom idle shutdown can be set to by the user.

    *)
}
Sourceval make : ?lifecycleManagement:??? -> ?idleTimeoutInMinutes:??? -> ?minIdleTimeoutInMinutes:??? -> ?maxIdleTimeoutInMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IdleTimeoutInMinutes.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