aws_sdk_rds/client/delete_db_proxy_endpoint.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 [`DeleteDBProxyEndpoint`](crate::operation::delete_db_proxy_endpoint::builders::DeleteDBProxyEndpointFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`db_proxy_endpoint_name(impl Into<String>)`](crate::operation::delete_db_proxy_endpoint::builders::DeleteDBProxyEndpointFluentBuilder::db_proxy_endpoint_name) / [`set_db_proxy_endpoint_name(Option<String>)`](crate::operation::delete_db_proxy_endpoint::builders::DeleteDBProxyEndpointFluentBuilder::set_db_proxy_endpoint_name):<br>required: **true**<br><p>The name of the DB proxy endpoint to delete.</p><br>
7 /// - On success, responds with [`DeleteDbProxyEndpointOutput`](crate::operation::delete_db_proxy_endpoint::DeleteDbProxyEndpointOutput) with field(s):
8 /// - [`db_proxy_endpoint(Option<DbProxyEndpoint>)`](crate::operation::delete_db_proxy_endpoint::DeleteDbProxyEndpointOutput::db_proxy_endpoint): <p>The data structure representing the details of the DB proxy endpoint that you delete.</p>
9 /// - On failure, responds with [`SdkError<DeleteDBProxyEndpointError>`](crate::operation::delete_db_proxy_endpoint::DeleteDBProxyEndpointError)
10 pub fn delete_db_proxy_endpoint(&self) -> crate::operation::delete_db_proxy_endpoint::builders::DeleteDBProxyEndpointFluentBuilder {
11 crate::operation::delete_db_proxy_endpoint::builders::DeleteDBProxyEndpointFluentBuilder::new(self.handle.clone())
12 }
13}