aws_sdk_mailmanager/client/
delete_ingress_point.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 [`DeleteIngressPoint`](crate::operation::delete_ingress_point::builders::DeleteIngressPointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ingress_point_id(impl Into<String>)`](crate::operation::delete_ingress_point::builders::DeleteIngressPointFluentBuilder::ingress_point_id) / [`set_ingress_point_id(Option<String>)`](crate::operation::delete_ingress_point::builders::DeleteIngressPointFluentBuilder::set_ingress_point_id):<br>required: **true**<br><p>The identifier of the ingress endpoint resource that you want to delete.</p><br>
7    /// - On success, responds with [`DeleteIngressPointOutput`](crate::operation::delete_ingress_point::DeleteIngressPointOutput)
8    /// - On failure, responds with [`SdkError<DeleteIngressPointError>`](crate::operation::delete_ingress_point::DeleteIngressPointError)
9    pub fn delete_ingress_point(&self) -> crate::operation::delete_ingress_point::builders::DeleteIngressPointFluentBuilder {
10        crate::operation::delete_ingress_point::builders::DeleteIngressPointFluentBuilder::new(self.handle.clone())
11    }
12}