Module Values.ModifyingPropertiesSource

Information about the domain properties that are currently being modified.

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

    The name of the property that is currently being modified.

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

    The current value of the domain property that is being modified.

    *)
  3. pendingValue : String_.t option;
    (*

    The value that the property that is currently being modified will eventually have.

    *)
  4. valueType : PropertyValueType.t option;
    (*

    The type of value that is currently being modified. Properties can have two types: PLAIN_TEXT: Contain direct values such as "1", "True", or "c5.large.search". STRINGIFIED_JSON: Contain content in JSON format, such as {"Enabled":"True"}".

    *)
}
Sourceval make : ?name:??? -> ?activeValue:??? -> ?pendingValue:??? -> ?valueType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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