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
nextToken
to display the next page of results.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
list_recovery_points
operation returns anextToken
, you can include the returnednextToken
in followinglist_recovery_points
operations, which returns results in the next page.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"
)
)
)