1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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): <p>The name of the DB proxy to delete.</p>
/// - 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(),
)
}
}