Module Values.ModifyCacheSubnetGroupMessageSource

Represents the input of a ModifyCacheSubnetGroup operation.

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

    The 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 option;
    (*

    A description of the cache subnet group.

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

    The EC2 subnet IDs for the cache subnet group.

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