Module Values.CopyServerlessCacheSnapshotRequestSource

Creates a copy of an existing serverless cache’s snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The identifier of the existing serverless cache’s snapshot to be copied. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The identifier for the snapshot to be created. Available for Valkey, Redis OSS and Serverless Memcached only. This value is stored as a lowercase string.

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

    The identifier of the KMS key used to encrypt the target snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

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

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

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