1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIngressPoint`](crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`GetIngressPointOutput`](crate::operation::get_ingress_point::GetIngressPointOutput) with field(s):
    ///   - [`ingress_point_id(String)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_id): <p>The identifier of an ingress endpoint resource.</p>
    ///   - [`ingress_point_name(String)`](crate::operation::get_ingress_point::GetIngressPointOutput::ingress_point_name): <p>A user friendly name for the ingress endpoint.</p>
    ///   - [`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>
    ///   - [`status(Option<IngressPointStatus>)`](crate::operation::get_ingress_point::GetIngressPointOutput::status): <p>The status of the ingress endpoint resource.</p>
    ///   - [`r#type(Option<IngressPointType>)`](crate::operation::get_ingress_point::GetIngressPointOutput::type): <p>The type of ingress endpoint.</p>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`created_timestamp(Option<DateTime>)`](crate::operation::get_ingress_point::GetIngressPointOutput::created_timestamp): <p>The timestamp of when the ingress endpoint was created.</p>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<GetIngressPointError>`](crate::operation::get_ingress_point::GetIngressPointError)
    pub fn get_ingress_point(&self) -> crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder {
        crate::operation::get_ingress_point::builders::GetIngressPointFluentBuilder::new(self.handle.clone())
    }
}