Module Values_1.ModifyOptionGroupMessageSource

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

    The name of the option group to be modified. Permanent options, such as the TDE option for Oracle Advanced Security TDE, can't be removed from an option group, and that option group can't be removed from a DB instance once it is associated with a DB instance

    *)
  2. optionsToInclude : Values_0.OptionConfigurationList.t option;
    (*

    Options in this list are added to the option group or, if already present, the specified configuration is used to update the existing configuration.

    *)
  3. optionsToRemove : Values_0.OptionNamesList.t option;
    (*

    Options in this list are removed from the option group.

    *)
  4. applyImmediately : Values_0.Boolean.t option;
    (*

    Specifies whether to apply the change immediately or during the next maintenance window for each instance associated with the option group.

    *)
}
Sourceval context_ : string
Sourceval make : ?optionsToInclude:??? -> ?optionsToRemove:??? -> ?applyImmediately:??? -> optionGroupName:Values_0.String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `List of [> `String of string | `Structure of (string * [> `Integer of int | `List of [> `String of string | `Structure of (string * [> `Boolean of bool | `String of string ]) list ] list | `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