Skip to content

Export Serverless Cache Snapshot

elasticache_export_serverless_cache_snapshot R Documentation

Provides the functionality to export the serverless cache snapshot data to Amazon S3

Description

Provides the functionality to export the serverless cache snapshot data to Amazon S3. Available for Redis OSS only.

Usage

elasticache_export_serverless_cache_snapshot(
  ServerlessCacheSnapshotName, S3BucketName)

Arguments

ServerlessCacheSnapshotName

[required] The identifier of the serverless cache snapshot to be exported to S3. Available for Redis OSS only.

S3BucketName

[required] Name of the Amazon S3 bucket to export the snapshot to. The Amazon S3 bucket must also be in same region as the snapshot. Available for Redis OSS only.

Value

A list with the following syntax:

list(
  ServerlessCacheSnapshot = list(
    ServerlessCacheSnapshotName = "string",
    ARN = "string",
    KmsKeyId = "string",
    SnapshotType = "string",
    Status = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    ExpiryTime = as.POSIXct(
      "2015-01-01"
    ),
    BytesUsedForCache = "string",
    ServerlessCacheConfiguration = list(
      ServerlessCacheName = "string",
      Engine = "string",
      MajorEngineVersion = "string"
    )
  )
)

Request syntax

svc$export_serverless_cache_snapshot(
  ServerlessCacheSnapshotName = "string",
  S3BucketName = "string"
)