Module Values.OperationUnionSource

A union type representing the operation to perform on a construct during a mapping update.

Sourcetype nonrec t = {
  1. merge : MergeOperation.t option;
    (*

    A merge operation to combine constructs from different segments.

    *)
  2. split : SplitOperation.t option;
    (*

    A split operation to divide a construct into multiple constructs with specified CIDR blocks.

    *)
  3. delete : DeleteOperation.t option;
    (*

    A delete operation to remove a construct from the mapping.

    *)
  4. update : UpdateOperation.t option;
    (*

    An update operation to modify construct properties.

    *)
}
Sourceval make : ?merge:??? -> ?split:??? -> ?delete:??? -> ?update:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of SegmentID.t ]) list ] list | `Map of ([> `String of ConstructPropertyKey.t ] * [> `String of MarshalledResourceDefinition.t ]) list | `String of SegmentConstructName.t ]) list ]) 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