aws_sdk_rds/client/delete_db_cluster_automated_backup.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteDBClusterAutomatedBackup`](crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`db_cluster_resource_id(impl Into<String>)`](crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder::db_cluster_resource_id) / [`set_db_cluster_resource_id(Option<String>)`](crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder::set_db_cluster_resource_id):<br>required: **true**<br><p>The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.</p><br>
7 /// - On success, responds with [`DeleteDbClusterAutomatedBackupOutput`](crate::operation::delete_db_cluster_automated_backup::DeleteDbClusterAutomatedBackupOutput) with field(s):
8 /// - [`db_cluster_automated_backup(Option<DbClusterAutomatedBackup>)`](crate::operation::delete_db_cluster_automated_backup::DeleteDbClusterAutomatedBackupOutput::db_cluster_automated_backup): <p>An automated backup of a DB cluster. It consists of system backups, transaction logs, and the database cluster properties that existed at the time you deleted the source cluster.</p>
9 /// - On failure, responds with [`SdkError<DeleteDBClusterAutomatedBackupError>`](crate::operation::delete_db_cluster_automated_backup::DeleteDBClusterAutomatedBackupError)
10 pub fn delete_db_cluster_automated_backup(
11 &self,
12 ) -> crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder {
13 crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder::new(self.handle.clone())
14 }
15}