Module Values_0.OptionGroupOptionSettingSource

Option group option settings are used to display settings available for each option with their default values and other information. These values are used with the DescribeOptionGroupOptions action.

Sourcetype nonrec t = {
  1. settingName : String_.t option;
    (*

    The name of the option group option.

    *)
  2. settingDescription : String_.t option;
    (*

    The description of the option group option.

    *)
  3. defaultValue : String_.t option;
    (*

    The default value for the option group option.

    *)
  4. applyType : String_.t option;
    (*

    The DB engine specific parameter type for the option group option.

    *)
  5. allowedValues : String_.t option;
    (*

    Indicates the acceptable values for the option group option.

    *)
  6. isModifiable : Boolean.t option;
    (*

    Indicates whether this option group option can be changed from the default value.

    *)
  7. isRequired : Boolean.t option;
    (*

    Indicates whether a value must be specified for this option setting of the option group option.

    *)
  8. minimumEngineVersionPerAllowedValue : MinimumEngineVersionPerAllowedValueList.t option;
    (*

    The minimum DB engine version required for the corresponding allowed value for this option setting.

    *)
}
Sourceval make : ?settingName:??? -> ?settingDescription:??? -> ?defaultValue:??? -> ?applyType:??? -> ?allowedValues:??? -> ?isModifiable:??? -> ?isRequired:??? -> ?minimumEngineVersionPerAllowedValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of 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