Module Values.CacheParameterGroupSource

Represents the output of a CreateCacheParameterGroup operation.

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

    The name of the cache parameter group.

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

    The name of the cache parameter group family that this cache parameter group is compatible with. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis7

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

    The description for this cache parameter group.

    *)
  4. isGlobal : Boolean.t option;
    (*

    Indicates whether the parameter group is associated with a Global datastore

    *)
  5. aRN : String_.t option;
    (*

    The ARN (Amazon Resource Name) of the cache parameter group.

    *)
}
Sourceval make : ?cacheParameterGroupName:??? -> ?cacheParameterGroupFamily:??? -> ?description:??? -> ?isGlobal:??? -> ?aRN:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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