Skip to content

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(sourceServerID, filters, order,
  maxResults, nextToken)

Arguments

sourceServerID

[required] Filter Recovery Snapshots by Source Server ID.

filters

A set of filters by which to return Recovery Snapshots.

order

The sorted ordering by which to return Recovery Snapshots.

maxResults

Maximum number of Recovery Snapshots to retrieve.

nextToken

The token of the next Recovery Snapshot to retrieve.

Value

A list with the following syntax:

list(
  items = list(
    list(
      snapshotID = "string",
      sourceServerID = "string",
      expectedTimestamp = "string",
      timestamp = "string",
      ebsSnapshots = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$describe_recovery_snapshots(
  sourceServerID = "string",
  filters = list(
    fromDateTime = "string",
    toDateTime = "string"
  ),
  order = "ASC"|"DESC",
  maxResults = 123,
  nextToken = "string"
)