Module Values.OptionStatusSource

The status of domain configuration option.

Sourcetype nonrec t = {
  1. creationDate : UpdateTimestamp.t option;
    (*

    A timestamp for when this option was created.

    *)
  2. updateDate : UpdateTimestamp.t option;
    (*

    A timestamp for when this option was last updated.

    *)
  3. updateVersion : UIntValue.t option;
    (*

    A unique integer that indicates when this option was last updated.

    *)
  4. state : OptionState.t option;
    (*

    The state of processing a change to an option. Possible values: RequiresIndexDocuments: the option's latest value will not be deployed until IndexDocuments has been called and indexing is complete. Processing: the option's latest value is in the process of being activated. Active: the option's latest value is completely deployed. FailedToValidate: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.

    *)
  5. pendingDeletion : Boolean.t option;
    (*

    Indicates that the option will be deleted once processing is complete.

    *)
}
Sourceval make : ?creationDate:??? -> ?updateDate:??? -> ?updateVersion:??? -> ?state:??? -> ?pendingDeletion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `Timestamp of UpdateTimestamp.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