aws_sdk_opensearch/client/
delete_inbound_connection.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 [`DeleteInboundConnection`](crate::operation::delete_inbound_connection::builders::DeleteInboundConnectionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`connection_id(impl Into<String>)`](crate::operation::delete_inbound_connection::builders::DeleteInboundConnectionFluentBuilder::connection_id) / [`set_connection_id(Option<String>)`](crate::operation::delete_inbound_connection::builders::DeleteInboundConnectionFluentBuilder::set_connection_id):<br>required: **true**<br><p>The ID of the inbound connection to permanently delete.</p><br>
7    /// - On success, responds with [`DeleteInboundConnectionOutput`](crate::operation::delete_inbound_connection::DeleteInboundConnectionOutput) with field(s):
8    ///   - [`connection(Option<InboundConnection>)`](crate::operation::delete_inbound_connection::DeleteInboundConnectionOutput::connection): <p>The deleted inbound connection.</p>
9    /// - On failure, responds with [`SdkError<DeleteInboundConnectionError>`](crate::operation::delete_inbound_connection::DeleteInboundConnectionError)
10    pub fn delete_inbound_connection(&self) -> crate::operation::delete_inbound_connection::builders::DeleteInboundConnectionFluentBuilder {
11        crate::operation::delete_inbound_connection::builders::DeleteInboundConnectionFluentBuilder::new(self.handle.clone())
12    }
13}