Module Values.ServerlessCacheSnapshotSource

The resource representing a serverless cache snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The identifier of a serverless cache snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The Amazon Resource Name (ARN) of a serverless cache snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The ID of the Amazon Web Services Key Management Service (KMS) key of a serverless cache snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
  4. snapshotType : String_.t option;
    (*

    The type of snapshot of serverless cache. Available for Valkey, Redis OSS and Serverless Memcached only.

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

    The current status of the serverless cache. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
  6. createTime : TStamp.t option;
    (*

    The date and time that the source serverless cache's metadata and cache data set was obtained for the snapshot. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
  7. expiryTime : TStamp.t option;
    (*

    The time that the serverless cache snapshot will expire. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
  8. bytesUsedForCache : String_.t option;
    (*

    The total size of a serverless cache snapshot, in bytes. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
  9. serverlessCacheConfiguration : ServerlessCacheConfiguration.t option;
    (*

    The configuration of the serverless cache, at the time the snapshot was taken. Available for Valkey, Redis OSS and Serverless Memcached only.

    *)
}
Sourceval make : ?serverlessCacheSnapshotName:??? -> ?aRN:??? -> ?kmsKeyId:??? -> ?snapshotType:??? -> ?status:??? -> ?createTime:??? -> ?expiryTime:??? -> ?bytesUsedForCache:??? -> ?serverlessCacheConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of TStamp.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