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