Module Values.OptionStatusSource

Provides the current status of the entity.

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

    Timestamp which tells the creation date for the entity.

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

    Timestamp which tells the last updated time for the entity.

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

    Specifies the latest version for the entity.

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

    Provides the OptionState for the Elasticsearch domain.

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

    Indicates whether the Elasticsearch domain is being deleted.

    *)
}
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