Module Values_0.OptionConfigurationSource

A list of all available options for an option group.

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

    The configuration of options to include in a group.

    *)
  2. port : IntegerOptional.t option;
    (*

    The optional port for the option.

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

    The version for the option.

    *)
  4. dBSecurityGroupMemberships : DBSecurityGroupNameList.t option;
    (*

    A list of DB security groups used for this option.

    *)
  5. vpcSecurityGroupMemberships : VpcSecurityGroupIdList.t option;
    (*

    A list of VPC security group names used for this option.

    *)
  6. optionSettings : OptionSettingsList.t option;
    (*

    The option settings to include in an option group.

    *)
}
Sourceval context_ : string
Sourceval make : ?port:??? -> ?optionVersion:??? -> ?dBSecurityGroupMemberships:??? -> ?vpcSecurityGroupMemberships:??? -> ?optionSettings:??? -> optionName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntegerOptional.t | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `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