Module Values.CreateCacheSubnetGroupMessageSource

Represents the input of a CreateCacheSubnetGroup operation.

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

    A name for the cache subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Example: mysubnetgroup

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

    A description for the cache subnet group.

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

    A list of VPC subnet IDs for the cache subnet group.

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

    A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

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