Module Values.AddOnSource

Describes an add-on that is enabled for an Amazon Lightsail resource.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the add-on.

    *)
  2. status : String_.t option;
    (*

    The status of the add-on.

    *)
  3. snapshotTimeOfDay : TimeOfDay.t option;
    (*

    The daily time when an automatic snapshot is created. The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). The snapshot is automatically created between the time shown and up to 45 minutes after.

    *)
  4. nextSnapshotTimeOfDay : TimeOfDay.t option;
    (*

    The next daily time an automatic snapshot will be created. The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). The snapshot is automatically created between the time shown and up to 45 minutes after.

    *)
  5. threshold : String_.t option;
    (*

    The trigger threshold of the action. This add-on only applies to Lightsail for Research resources.

    *)
  6. duration : String_.t option;
    (*

    The amount of idle time in minutes after which your virtual computer will automatically stop. This add-on only applies to Lightsail for Research resources.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?snapshotTimeOfDay:??? -> ?nextSnapshotTimeOfDay:??? -> ?threshold:??? -> ?duration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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