Describe Service Updates
elasticache_describe_service_updates | R Documentation |
Returns details of the service updates¶
Description¶
Returns details of the service updates
Usage¶
elasticache_describe_service_updates(ServiceUpdateName,
ServiceUpdateStatus, MaxRecords, Marker)
Arguments¶
ServiceUpdateName |
The unique ID of the service update |
ServiceUpdateStatus |
The status of the service update |
MaxRecords |
The maximum number of records to include in the response |
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",
ServiceUpdates = list(
list(
ServiceUpdateName = "string",
ServiceUpdateReleaseDate = as.POSIXct(
"2015-01-01"
),
ServiceUpdateEndDate = as.POSIXct(
"2015-01-01"
),
ServiceUpdateSeverity = "critical"|"important"|"medium"|"low",
ServiceUpdateRecommendedApplyByDate = as.POSIXct(
"2015-01-01"
),
ServiceUpdateStatus = "available"|"cancelled"|"expired",
ServiceUpdateDescription = "string",
ServiceUpdateType = "security-update",
Engine = "string",
EngineVersion = "string",
AutoUpdateAfterRecommendedApplyByDate = TRUE|FALSE,
EstimatedUpdateTime = "string"
)
)
)
Request syntax¶
svc$describe_service_updates(
ServiceUpdateName = "string",
ServiceUpdateStatus = list(
"available"|"cancelled"|"expired"
),
MaxRecords = 123,
Marker = "string"
)