Skip to content

Restore from Recovery Point

redshiftserverless_restore_from_recovery_point R Documentation

Restore the data from a recovery point

Description

Restore the data from a recovery point.

Usage

redshiftserverless_restore_from_recovery_point(namespaceName,
  recoveryPointId, workgroupName)

Arguments

namespaceName

[required] The name of the namespace to restore data into.

recoveryPointId

[required] The unique identifier of the recovery point to restore from.

workgroupName

[required] The name of the workgroup used to restore data.

Value

A list with the following syntax:

list(
  namespace = list(
    adminPasswordSecretArn = "string",
    adminPasswordSecretKmsKeyId = "string",
    adminUsername = "string",
    creationDate = as.POSIXct(
      "2015-01-01"
    ),
    dbName = "string",
    defaultIamRoleArn = "string",
    iamRoles = list(
      "string"
    ),
    kmsKeyId = "string",
    logExports = list(
      "useractivitylog"|"userlog"|"connectionlog"
    ),
    namespaceArn = "string",
    namespaceId = "string",
    namespaceName = "string",
    status = "AVAILABLE"|"MODIFYING"|"DELETING"
  ),
  recoveryPointId = "string"
)

Request syntax

svc$restore_from_recovery_point(
  namespaceName = "string",
  recoveryPointId = "string",
  workgroupName = "string"
)