Module Values_0.OptionGroupSource

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

    Specifies the name of the option group.

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

    Provides a description of the option group.

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

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

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

    Indicates the major engine version associated with this option group.

    *)
  5. options : OptionsList.t option;
    (*

    Indicates what options are available in the option group.

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

    Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

    *)
  7. vpcId : String_.t option;
    (*

    If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.

    *)
  8. optionGroupArn : String_.t option;
    (*

    Specifies the Amazon Resource Name (ARN) for the option group.

    *)
  9. sourceOptionGroup : String_.t option;
    (*

    Specifies the name of the option group from which this option group is copied.

    *)
  10. sourceAccountId : String_.t option;
    (*

    Specifies the Amazon Web Services account ID for the option group from which this option group is copied.

    *)
  11. copyTimestamp : TStamp.t option;
    (*

    Indicates when the option group was copied.

    *)
}
Sourceval make : ?optionGroupName:??? -> ?optionGroupDescription:??? -> ?engineName:??? -> ?majorEngineVersion:??? -> ?options:??? -> ?allowsVpcAndNonVpcInstanceMemberships:??? -> ?vpcId:??? -> ?optionGroupArn:??? -> ?sourceOptionGroup:??? -> ?sourceAccountId:??? -> ?copyTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerOptional.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.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