Skip to content

List Restore Access Backup Vaults

backup_list_restore_access_backup_vaults R Documentation

Returns a list of restore access backup vaults associated with a specified backup vault

Description

Returns a list of restore access backup vaults associated with a specified backup vault.

Usage

backup_list_restore_access_backup_vaults(BackupVaultName, NextToken,
  MaxResults)

Arguments

BackupVaultName

[required] The name of the backup vault for which to list associated restore access backup vaults.

NextToken

The pagination token from a previous request to retrieve the next set of results.

MaxResults

The maximum number of items to return in the response.

Value

A list with the following syntax:

list(
  NextToken = "string",
  RestoreAccessBackupVaults = list(
    list(
      RestoreAccessBackupVaultArn = "string",
      CreationDate = as.POSIXct(
        "2015-01-01"
      ),
      ApprovalDate = as.POSIXct(
        "2015-01-01"
      ),
      VaultState = "CREATING"|"AVAILABLE"|"FAILED",
      LatestRevokeRequest = list(
        MpaSessionArn = "string",
        Status = "PENDING"|"FAILED",
        StatusMessage = "string",
        InitiationDate = as.POSIXct(
          "2015-01-01"
        ),
        ExpiryDate = as.POSIXct(
          "2015-01-01"
        )
      )
    )
  )
)

Request syntax

svc$list_restore_access_backup_vaults(
  BackupVaultName = "string",
  NextToken = "string",
  MaxResults = 123
)