Skip to content

Get Recovery Point

redshiftserverless_get_recovery_point R Documentation

Returns information about a recovery point

Description

Returns information about a recovery point.

Usage

redshiftserverless_get_recovery_point(recoveryPointId)

Arguments

recoveryPointId

[required] The unique identifier of the recovery point to return information for.

Value

A list with the following syntax:

list(
  recoveryPoint = list(
    namespaceArn = "string",
    namespaceName = "string",
    recoveryPointCreateTime = as.POSIXct(
      "2015-01-01"
    ),
    recoveryPointId = "string",
    totalSizeInMegaBytes = 123.0,
    workgroupName = "string"
  )
)

Request syntax

svc$get_recovery_point(
  recoveryPointId = "string"
)