Describe Cache Engine Versions
elasticache_describe_cache_engine_versions | R Documentation |
Returns a list of the available cache engines and their versions¶
Description¶
Returns a list of the available cache engines and their versions.
Usage¶
elasticache_describe_cache_engine_versions(Engine, EngineVersion,
CacheParameterGroupFamily, MaxRecords, Marker, DefaultOnly)
Arguments¶
Engine |
The cache engine to return. Valid values: |
EngineVersion |
The cache engine version to return. Example: |
CacheParameterGroupFamily |
The name of a specific cache parameter group family to return details for. Valid values are: Constraints:
|
MaxRecords |
The maximum number of records to include in the response. If more
records exist than the specified Default: 100 Constraints: minimum 20; maximum 100. |
Marker |
An optional marker returned from a prior request. Use this marker
for 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 |
DefaultOnly |
If |
Value¶
A list with the following syntax:
list(
Marker = "string",
CacheEngineVersions = list(
list(
Engine = "string",
EngineVersion = "string",
CacheParameterGroupFamily = "string",
CacheEngineDescription = "string",
CacheEngineVersionDescription = "string"
)
)
)
Request syntax¶
svc$describe_cache_engine_versions(
Engine = "string",
EngineVersion = "string",
CacheParameterGroupFamily = "string",
MaxRecords = 123,
Marker = "string",
DefaultOnly = TRUE|FALSE
)
Examples¶
## Not run:
# Lists the details for up to 25 Memcached and Redis cache engine
# versions.
svc$describe_cache_engine_versions()
# Lists the details for up to 50 Redis cache engine versions.
svc$describe_cache_engine_versions(
DefaultOnly = FALSE,
Engine = "redis",
MaxRecords = 50L
)
## End(Not run)