Skip to content

Delete Db Cluster Automated Backup

rds_delete_db_cluster_automated_backup R Documentation

Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups

Description

Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.

Usage

rds_delete_db_cluster_automated_backup(DbClusterResourceId)

Arguments

DbClusterResourceId

[required] The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.

Value

A list with the following syntax:

list(
  DBClusterAutomatedBackup = list(
    Engine = "string",
    VpcId = "string",
    DBClusterAutomatedBackupsArn = "string",
    DBClusterIdentifier = "string",
    RestoreWindow = list(
      EarliestTime = as.POSIXct(
        "2015-01-01"
      ),
      LatestTime = as.POSIXct(
        "2015-01-01"
      )
    ),
    MasterUsername = "string",
    DbClusterResourceId = "string",
    Region = "string",
    LicenseModel = "string",
    Status = "string",
    IAMDatabaseAuthenticationEnabled = TRUE|FALSE,
    ClusterCreateTime = as.POSIXct(
      "2015-01-01"
    ),
    StorageEncrypted = TRUE|FALSE,
    AllocatedStorage = 123,
    EngineVersion = "string",
    DBClusterArn = "string",
    BackupRetentionPeriod = 123,
    EngineMode = "string",
    AvailabilityZones = list(
      "string"
    ),
    Port = 123,
    KmsKeyId = "string",
    StorageType = "string",
    Iops = 123,
    AwsBackupRecoveryPointArn = "string",
    StorageThroughput = 123
  )
)

Request syntax

svc$delete_db_cluster_automated_backup(
  DbClusterResourceId = "string"
)