Describe Reserved Cache Nodes Offerings
elasticache_describe_reserved_cache_nodes_offerings | R Documentation |
Lists available reserved cache node offerings¶
Description¶
Lists available reserved cache node offerings.
Usage¶
elasticache_describe_reserved_cache_nodes_offerings(
ReservedCacheNodesOfferingId, CacheNodeType, Duration,
ProductDescription, OfferingType, MaxRecords, Marker)
Arguments¶
ReservedCacheNodesOfferingId |
The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier. Example: |
CacheNodeType |
The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type. The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.
Additional node type info
|
Duration |
Duration filter value, specified in years or seconds. Use this parameter to show only reservations for a given duration. Valid Values: |
ProductDescription |
The product description filter value. Use this parameter to show only the available offerings matching the specified product description. |
OfferingType |
The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type. Valid Values:
|
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 |
Value¶
A list with the following syntax:
list(
Marker = "string",
ReservedCacheNodesOfferings = list(
list(
ReservedCacheNodesOfferingId = "string",
CacheNodeType = "string",
Duration = 123,
FixedPrice = 123.0,
UsagePrice = 123.0,
ProductDescription = "string",
OfferingType = "string",
RecurringCharges = list(
list(
RecurringChargeAmount = 123.0,
RecurringChargeFrequency = "string"
)
)
)
)
)
Request syntax¶
svc$describe_reserved_cache_nodes_offerings(
ReservedCacheNodesOfferingId = "string",
CacheNodeType = "string",
Duration = "string",
ProductDescription = "string",
OfferingType = "string",
MaxRecords = 123,
Marker = "string"
)
Examples¶
## Not run:
# Lists available reserved cache node offerings.
svc$describe_reserved_cache_nodes_offerings(
MaxRecords = 20L
)
# Lists available reserved cache node offerings for cache.r3.large nodes
# with a 3 year commitment.
svc$describe_reserved_cache_nodes_offerings(
CacheNodeType = "cache.r3.large",
Duration = "3",
MaxRecords = 25L,
OfferingType = "Light Utilization",
ReservedCacheNodesOfferingId = ""
)
# Lists available reserved cache node offerings.
svc$describe_reserved_cache_nodes_offerings(
CacheNodeType = "",
Duration = "",
Marker = "",
MaxRecords = 25L,
OfferingType = "",
ProductDescription = "",
ReservedCacheNodesOfferingId = "438012d3-4052-4cc7-b2e3-8d3372e0e706"
)
## End(Not run)