aws_sdk_rds/client/delete_db_cluster_automated_backup.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteDBClusterAutomatedBackup`](crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - On success, responds with [`DeleteDbClusterAutomatedBackupOutput`](crate::operation::delete_db_cluster_automated_backup::DeleteDbClusterAutomatedBackupOutput) with field(s):
/// - [`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>
/// - On failure, responds with [`SdkError<DeleteDBClusterAutomatedBackupError>`](crate::operation::delete_db_cluster_automated_backup::DeleteDBClusterAutomatedBackupError)
pub fn delete_db_cluster_automated_backup(
&self,
) -> crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder {
crate::operation::delete_db_cluster_automated_backup::builders::DeleteDBClusterAutomatedBackupFluentBuilder::new(self.handle.clone())
}
}