Module Values_0.OptionGroupOptionSource

Available option.

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

    The name of the option.

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

    The description of the option.

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

    The name of the engine that this option can be applied to.

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

    Indicates the major engine version that the option is available for.

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

    The minimum required engine version for the option to be applied.

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

    Indicates whether the option requires a port.

    *)
  7. defaultPort : IntegerOptional.t option;
    (*

    If the option requires a port, specifies the default port for the option.

    *)
  8. optionsDependedOn : OptionsDependedOn.t option;
    (*

    The options that are prerequisites for this option.

    *)
  9. optionsConflictsWith : OptionsConflictsWith.t option;
    (*

    The options that conflict with this option.

    *)
  10. persistent : Boolean.t option;
    (*

    Persistent options can't be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.

    *)
  11. permanent : Boolean.t option;
    (*

    Permanent options can never be removed from an option group. An option group containing a permanent option can't be removed from a DB instance.

    *)
  12. requiresAutoMinorEngineVersionUpgrade : Boolean.t option;
    (*

    If true, you must enable the Auto Minor Version Upgrade setting for your DB instance before you can use this option. You can enable Auto Minor Version Upgrade when you first create your DB instance, or by modifying your DB instance later.

    *)
  13. vpcOnly : Boolean.t option;
    (*

    If true, you can only use this option with a DB instance that is in a VPC.

    *)
  14. supportsOptionVersionDowngrade : BooleanOptional.t option;
    (*

    If true, you can change the option to an earlier version of the option. This only applies to options that have different versions available.

    *)
  15. optionGroupOptionSettings : OptionGroupOptionSettingsList.t option;
    (*

    The option settings that are available (and the default value) for each option in an option group.

    *)
  16. optionGroupOptionVersions : OptionGroupOptionVersionsList.t option;
    (*

    The versions that are available for the option.

    *)
  17. copyableCrossAccount : BooleanOptional.t option;
    (*

    Indicates whether the option can be copied across Amazon Web Services accounts.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?engineName:??? -> ?majorEngineVersion:??? -> ?minimumRequiredMinorEngineVersion:??? -> ?portRequired:??? -> ?defaultPort:??? -> ?optionsDependedOn:??? -> ?optionsConflictsWith:??? -> ?persistent:??? -> ?permanent:??? -> ?requiresAutoMinorEngineVersionUpgrade:??? -> ?vpcOnly:??? -> ?supportsOptionVersionDowngrade:??? -> ?optionGroupOptionSettings:??? -> ?optionGroupOptionVersions:??? -> ?copyableCrossAccount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerOptional.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `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