Module Values.CreateCacheParameterGroupMessageSource

Represents the input of a CreateCacheParameterGroup operation.

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

    A user-specified name for the cache parameter group. This value is stored as a lowercase string.

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

    The name of the cache parameter group family that the cache parameter group can be used with. Valid values are: valkey8 | valkey7 | memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7

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

    A user-specified description for the cache parameter 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:??? -> cacheParameterGroupName:String_.t -> cacheParameterGroupFamily:String_.t -> description:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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