Module Values.CancelledChangePropertySource

A property change that was cancelled for an Amazon OpenSearch Service domain.

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

    The name of the property whose change was cancelled.

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

    The pending value of the property that was cancelled. This would have been the eventual value of the property if the chance had not been cancelled.

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

    The current value of the property, after the change was cancelled.

    *)
}
Sourceval make : ?propertyName:??? -> ?cancelledValue:??? -> ?activeValue:??? -> 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