Module Values_1.CreateOptionGroupMessageSource

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

    Specifies the name of the option group to be created. Constraints: Must be 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: myoptiongroup

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

    The name of the engine to associate this option group with. Valid Values: db2-ae db2-se mariadb mysql oracle-ee oracle-ee-cdb oracle-se2 oracle-se2-cdb postgres sqlserver-ee sqlserver-se sqlserver-ex sqlserver-web

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

    Specifies the major version of the engine that this option group should be associated with.

    *)
  4. optionGroupDescription : Values_0.String_.t;
    (*

    The description of the option group.

    *)
  5. tags : Values_0.TagList.t option;
    (*

    Tags to assign to the option group.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> optionGroupName:Values_0.String_.t -> engineName:Values_0.String_.t -> majorEngineVersion:Values_0.String_.t -> optionGroupDescription: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