aws_sdk_mailmanager/client/
update_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 [`UpdateIngressPoint`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ingress_point_id(impl Into<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::ingress_point_id) / [`set_ingress_point_id(Option<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_ingress_point_id):<br>required: **true**<br><p>The identifier for the ingress endpoint you want to update.</p><br>
7    ///   - [`ingress_point_name(impl Into<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::ingress_point_name) / [`set_ingress_point_name(Option<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_ingress_point_name):<br>required: **false**<br><p>A user friendly name for the ingress endpoint resource.</p><br>
8    ///   - [`status_to_update(IngressPointStatusToUpdate)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::status_to_update) / [`set_status_to_update(Option<IngressPointStatusToUpdate>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_status_to_update):<br>required: **false**<br><p>The update status of an ingress endpoint.</p><br>
9    ///   - [`rule_set_id(impl Into<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::rule_set_id) / [`set_rule_set_id(Option<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_rule_set_id):<br>required: **false**<br><p>The identifier of an existing rule set that you attach to an ingress endpoint resource.</p><br>
10    ///   - [`traffic_policy_id(impl Into<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::traffic_policy_id) / [`set_traffic_policy_id(Option<String>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_traffic_policy_id):<br>required: **false**<br><p>The identifier of an existing traffic policy that you attach to an ingress endpoint resource.</p><br>
11    ///   - [`ingress_point_configuration(IngressPointConfiguration)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::ingress_point_configuration) / [`set_ingress_point_configuration(Option<IngressPointConfiguration>)`](crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::set_ingress_point_configuration):<br>required: **false**<br><p>If you choose an Authenticated ingress endpoint, you must configure either an SMTP password or a secret ARN.</p><br>
12    /// - On success, responds with [`UpdateIngressPointOutput`](crate::operation::update_ingress_point::UpdateIngressPointOutput)
13    /// - On failure, responds with [`SdkError<UpdateIngressPointError>`](crate::operation::update_ingress_point::UpdateIngressPointError)
14    pub fn update_ingress_point(&self) -> crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder {
15        crate::operation::update_ingress_point::builders::UpdateIngressPointFluentBuilder::new(self.handle.clone())
16    }
17}