Module Values.CreateDBSubnetGroupMessageSource

Represents the input to CreateDBSubnetGroup.

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

    The name for the subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default. Example: mySubnetgroup

    *)
  2. dBSubnetGroupDescription : String_.t;
    (*

    The description for the subnet group.

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

    The Amazon EC2 subnet IDs for the subnet group.

    *)
  4. tags : TagList.t option;
    (*

    The tags to be assigned to the subnet group.

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