aws_sdk_rds/client/
delete_db_proxy.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 [`DeleteDBProxy`](crate::operation::delete_db_proxy::builders::DeleteDBProxyFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`db_proxy_name(impl Into<String>)`](crate::operation::delete_db_proxy::builders::DeleteDBProxyFluentBuilder::db_proxy_name) / [`set_db_proxy_name(Option<String>)`](crate::operation::delete_db_proxy::builders::DeleteDBProxyFluentBuilder::set_db_proxy_name):<br>required: **true**<br><p>The name of the DB proxy to delete.</p><br>
7    /// - On success, responds with [`DeleteDbProxyOutput`](crate::operation::delete_db_proxy::DeleteDbProxyOutput) with field(s):
8    ///   - [`db_proxy(Option<DbProxy>)`](crate::operation::delete_db_proxy::DeleteDbProxyOutput::db_proxy): <p>The data structure representing the details of the DB proxy that you delete.</p>
9    /// - On failure, responds with [`SdkError<DeleteDBProxyError>`](crate::operation::delete_db_proxy::DeleteDBProxyError)
10    pub fn delete_db_proxy(&self) -> crate::operation::delete_db_proxy::builders::DeleteDBProxyFluentBuilder {
11        crate::operation::delete_db_proxy::builders::DeleteDBProxyFluentBuilder::new(self.handle.clone())
12    }
13}