Module Values.UpdateOperationSource

An operation that updates the properties of a construct.

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

    The updated name for the construct.

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

    Whether to exclude this construct from the migration.

    *)
  3. properties : ConstructProperties.t option;
    (*

    The properties to update on the construct.

    *)
}
Sourceval make : ?name:??? -> ?excluded:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of ConstructPropertyKey.t ] * [> `String of MarshalledResourceDefinition.t ]) list | `String of SegmentConstructName.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