Module Values.CreateClusterSubnetGroupMessageSource

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

    The name for the subnet group. Amazon Redshift stores the value as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Must not be "Default". Must be unique for all subnet groups that are created by your Amazon Web Services account. Example: examplesubnetgroup

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

    A description for the subnet group.

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

    An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.

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

    A list of tag instances.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> clusterSubnetGroupName:String_.t -> description: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