aws_sdk_sesv2/client/
get_email_address_insights.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 [`GetEmailAddressInsights`](crate::operation::get_email_address_insights::builders::GetEmailAddressInsightsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`email_address(impl Into<String>)`](crate::operation::get_email_address_insights::builders::GetEmailAddressInsightsFluentBuilder::email_address) / [`set_email_address(Option<String>)`](crate::operation::get_email_address_insights::builders::GetEmailAddressInsightsFluentBuilder::set_email_address):<br>required: **true**<br><p>The email address to analyze for validation insights.</p><br>
7    /// - On success, responds with [`GetEmailAddressInsightsOutput`](crate::operation::get_email_address_insights::GetEmailAddressInsightsOutput) with field(s):
8    ///   - [`mailbox_validation(Option<MailboxValidation>)`](crate::operation::get_email_address_insights::GetEmailAddressInsightsOutput::mailbox_validation): <p>Detailed validation results for the email address.</p>
9    /// - On failure, responds with [`SdkError<GetEmailAddressInsightsError>`](crate::operation::get_email_address_insights::GetEmailAddressInsightsError)
10    pub fn get_email_address_insights(&self) -> crate::operation::get_email_address_insights::builders::GetEmailAddressInsightsFluentBuilder {
11        crate::operation::get_email_address_insights::builders::GetEmailAddressInsightsFluentBuilder::new(self.handle.clone())
12    }
13}