Module Values.CreateSubnetGroupRequestSource

Creates a new subnet group.

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

    A name for the subnet group. This value is stored as a lowercase string.

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

    A description for the subnet group

    *)
  3. subnetIds : SubnetIdentifierList.t;
    (*

    A list of VPC subnet IDs for the subnet group.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> subnetGroupName:String_.t -> subnetIds:SubnetIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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