deleteDbInstanceAutomatedBackup

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

Samples


fun main() { 
   //sampleStart 
   // The following example deletes the automated backup with the specified Amazon Resource Name (ARN).
val resp = rdsClient.deleteDbInstanceAutomatedBackup {
    dbInstanceAutomatedBackupsArn = "arn:aws:rds:us-west-2:123456789012:auto-backup:ab-jkib2gfq5rv7replzadausbrktni2bn4example"
} 
   //sampleEnd
}