Module Values.SoftwareUpdateOptionsSource

Options for configuring service software updates for a domain.

Sourcetype nonrec t = {
  1. autoSoftwareUpdateEnabled : Boolean.t option;
    (*

    Whether automatic service software updates are enabled for the domain.

    *)
  2. useLatestServiceSoftwareForBlueGreen : Boolean.t option;
    (*

    Whether the domain should use the latest service software version during a blue/green deployment. If enabled, the domain will automatically use the latest available service software when a blue/green deployment is triggered.

    *)
}
Sourceval make : ?autoSoftwareUpdateEnabled:??? -> ?useLatestServiceSoftwareForBlueGreen:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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