Skip to content

Describe Serverless Caches

elasticache_describe_serverless_caches R Documentation

Returns information about a specific serverless cache

Description

Returns information about a specific serverless cache. If no identifier is specified, then the API returns information on all the serverless caches belonging to this Amazon Web Services account.

Usage

elasticache_describe_serverless_caches(ServerlessCacheName, MaxResults,
  NextToken)

Arguments

ServerlessCacheName

The identifier for the serverless cache. If this parameter is specified, only information about that specific serverless cache is returned. Default: NULL

MaxResults

The maximum number of records in the response. If more records exist than the specified max-records value, the next token is included in the response so that remaining results can be retrieved. The default is 50.

NextToken

An optional marker returned from a prior request to support pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxResults.

Value

A list with the following syntax:

list(
  NextToken = "string",
  ServerlessCaches = list(
    list(
      ServerlessCacheName = "string",
      Description = "string",
      CreateTime = as.POSIXct(
        "2015-01-01"
      ),
      Status = "string",
      Engine = "string",
      MajorEngineVersion = "string",
      FullEngineVersion = "string",
      CacheUsageLimits = list(
        DataStorage = list(
          Maximum = 123,
          Minimum = 123,
          Unit = "GB"
        ),
        ECPUPerSecond = list(
          Maximum = 123,
          Minimum = 123
        )
      ),
      KmsKeyId = "string",
      SecurityGroupIds = list(
        "string"
      ),
      Endpoint = list(
        Address = "string",
        Port = 123
      ),
      ReaderEndpoint = list(
        Address = "string",
        Port = 123
      ),
      ARN = "string",
      UserGroupId = "string",
      SubnetIds = list(
        "string"
      ),
      SnapshotRetentionLimit = 123,
      DailySnapshotTime = "string"
    )
  )
)

Request syntax

svc$describe_serverless_caches(
  ServerlessCacheName = "string",
  MaxResults = 123,
  NextToken = "string"
)