Learn R Programming

paws.security.identity (version 0.1.12)

cloudhsmv2_delete_backup: Deletes a specified AWS CloudHSM backup

Description

Deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days after the DeleteBackup request is made. For more information on restoring a backup, see restore_backup.

Usage

cloudhsmv2_delete_backup(BackupId)

Value

A list with the following syntax:

list(
  Backup = list(
    BackupId = "string",
    BackupState = "CREATE_IN_PROGRESS"|"READY"|"DELETED"|"PENDING_DELETION",
    ClusterId = "string",
    CreateTimestamp = as.POSIXct(
      "2015-01-01"
    ),
    CopyTimestamp = as.POSIXct(
      "2015-01-01"
    ),
    NeverExpires = TRUE|FALSE,
    SourceRegion = "string",
    SourceBackup = "string",
    SourceCluster = "string",
    DeleteTimestamp = as.POSIXct(
      "2015-01-01"
    ),
    TagList = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Arguments

BackupId

[required] The ID of the backup to be deleted. To find the ID of a backup, use the describe_backups operation.

Request syntax

svc$delete_backup(
  BackupId = "string"
)