aws_sdk_mailmanager/client/
get_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 [`GetIngressPoint`](crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`ingress_point_id(impl Into<String>)`](crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder::ingress_point_id) / [`set_ingress_point_id(Option<String>)`](crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder::set_ingress_point_id):<br>required: **true**<br><p>The identifier of an ingress endpoint.</p><br>
7    /// - On success, responds with [`GetIngressPointOutput`](crate::operation::get_ingress_point::GetIngressPointOutput) with field(s):
8    ///   - [`ingress_point_id(String)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_id): <p>The identifier of an ingress endpoint resource.</p>
9    ///   - [`ingress_point_name(String)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_name): <p>A user friendly name for the ingress endpoint.</p>
10    ///   - [`ingress_point_arn(Option<String>)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_arn): <p>The Amazon Resource Name (ARN) of the ingress endpoint resource.</p>
11    ///   - [`status(Option<IngressPointStatus>)`](crate::operation::get_ingress_point::GetIngressPointOutput::status): <p>The status of the ingress endpoint resource.</p>
12    ///   - [`r#type(Option<IngressPointType>)`](crate::operation::get_ingress_point::GetIngressPointOutput::type): <p>The type of ingress endpoint.</p>
13    ///   - [`a_record(Option<String>)`](crate::operation::get_ingress_point::GetIngressPointOutput::a_record): <p>The DNS A Record that identifies your ingress endpoint. Configure your DNS Mail Exchange (MX) record with this value to route emails to Mail Manager.</p>
14    ///   - [`rule_set_id(Option<String>)`](crate::operation::get_ingress_point::GetIngressPointOutput::rule_set_id): <p>The identifier of a rule set resource associated with the ingress endpoint.</p>
15    ///   - [`traffic_policy_id(Option<String>)`](crate::operation::get_ingress_point::GetIngressPointOutput::traffic_policy_id): <p>The identifier of the traffic policy resource associated with the ingress endpoint.</p>
16    ///   - [`ingress_point_auth_configuration(Option<IngressPointAuthConfiguration>)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_auth_configuration): <p>The authentication configuration of the ingress endpoint resource.</p>
17    ///   - [`network_configuration(Option<NetworkConfiguration>)`](crate::operation::get_ingress_point::GetIngressPointOutput::network_configuration): <p>The network configuration for the ingress point.</p>
18    ///   - [`created_timestamp(Option<DateTime>)`](crate::operation::get_ingress_point::GetIngressPointOutput::created_timestamp): <p>The timestamp of when the ingress endpoint was created.</p>
19    ///   - [`last_updated_timestamp(Option<DateTime>)`](crate::operation::get_ingress_point::GetIngressPointOutput::last_updated_timestamp): <p>The timestamp of when the ingress endpoint was last updated.</p>
20    /// - On failure, responds with [`SdkError<GetIngressPointError>`](crate::operation::get_ingress_point::GetIngressPointError)
21    pub fn get_ingress_point(&self) -> crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder {
22        crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder::new(self.handle.clone())
23    }
24}