Describe Recovery Snapshots
drs_describe_recovery_snapshots | R Documentation |
Lists all Recovery Snapshots for a single Source Server¶
Description¶
Lists all Recovery Snapshots for a single Source Server.
Usage¶
drs_describe_recovery_snapshots(filters, maxResults, nextToken, order,
sourceServerID)
Arguments¶
filters |
A set of filters by which to return Recovery Snapshots. |
maxResults |
Maximum number of Recovery Snapshots to retrieve. |
nextToken |
The token of the next Recovery Snapshot to retrieve. |
order |
The sorted ordering by which to return Recovery Snapshots. |
sourceServerID |
[required] Filter Recovery Snapshots by Source Server ID. |
Value¶
A list with the following syntax:
list(
items = list(
list(
ebsSnapshots = list(
"string"
),
expectedTimestamp = "string",
snapshotID = "string",
sourceServerID = "string",
timestamp = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$describe_recovery_snapshots(
filters = list(
fromDateTime = "string",
toDateTime = "string"
),
maxResults = 123,
nextToken = "string",
order = "ASC"|"DESC",
sourceServerID = "string"
)