Module Values.CreateServerlessCacheSnapshotRequestSource

This API creates a copy of an entire ServerlessCache at a specific moment in time. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The name for the snapshot being created. Must be unique for the customer account. Available for Valkey, Redis OSS and Serverless Memcached only. Must be between 1 and 255 characters. This value is stored as a lowercase string.

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

    The name of an existing serverless cache. The snapshot is created from this cache. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The ID of the KMS key used to encrypt the snapshot. Available for Valkey, Redis OSS and Serverless Memcached only. Default: NULL

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

    A list of tags to be added to the snapshot resource. A tag is a key-value pair. Available for Valkey, Redis OSS and Serverless Memcached only.

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