Module Values_1.CopyOptionGroupMessageSource

Sourcetype nonrec t = {
  1. sourceOptionGroupIdentifier : Values_0.String_.t;
    (*

    The identifier for the source option group. Constraints: Must specify a valid option group.

    *)
  2. targetOptionGroupIdentifier : Values_0.String_.t;
    (*

    The identifier for the copied option group. Constraints: Can't be null, empty, or blank Must contain from 1 to 255 letters, numbers, or hyphens First character must be a letter Can't end with a hyphen or contain two consecutive hyphens Example: my-option-group

    *)
  3. targetOptionGroupDescription : Values_0.String_.t;
    (*

    The description for the copied option group.

    *)
  4. tags : Values_0.TagList.t option;
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> sourceOptionGroupIdentifier:Values_0.String_.t -> targetOptionGroupIdentifier:Values_0.String_.t -> targetOptionGroupDescription:Values_0.String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.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