List Recovery Points
redshiftserverless_list_recovery_points | R Documentation |
Returns an array of recovery points¶
Description¶
Returns an array of recovery points.
Usage¶
redshiftserverless_list_recovery_points(endTime, maxResults,
namespaceArn, namespaceName, nextToken, startTime)
Arguments¶
endTime |
The time when creation of the recovery point finished. |
maxResults |
An optional parameter that specifies the maximum number of
results to return. You can use |
namespaceArn |
The Amazon Resource Name (ARN) of the namespace from which to list recovery points. |
namespaceName |
The name of the namespace to list recovery points for. |
nextToken |
If your initial |
startTime |
The time when the recovery point's creation was initiated. |
Value¶
A list with the following syntax:
list(
nextToken = "string",
recoveryPoints = list(
list(
namespaceArn = "string",
namespaceName = "string",
recoveryPointCreateTime = as.POSIXct(
"2015-01-01"
),
recoveryPointId = "string",
totalSizeInMegaBytes = 123.0,
workgroupName = "string"
)
)
)
Request syntax¶
svc$list_recovery_points(
endTime = as.POSIXct(
"2015-01-01"
),
maxResults = 123,
namespaceArn = "string",
namespaceName = "string",
nextToken = "string",
startTime = as.POSIXct(
"2015-01-01"
)
)