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¶
endTimeThe time when creation of the recovery point finished.
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento display the next page of results.namespaceArnThe Amazon Resource Name (ARN) of the namespace from which to list recovery points.
namespaceNameThe name of the namespace to list recovery points for.
nextTokenIf your initial
list_recovery_pointsoperation returns anextToken, you can include the returnednextTokenin followinglist_recovery_pointsoperations, which returns results in the next page.startTimeThe 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"
)
)
)