1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ResendContactReachabilityEmail`](crate::operation::resend_contact_reachability_email::builders::ResendContactReachabilityEmailFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::resend_contact_reachability_email::builders::ResendContactReachabilityEmailFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::resend_contact_reachability_email::builders::ResendContactReachabilityEmailFluentBuilder::set_domain_name):<br>required: **false**<br><p>The name of the domain for which you want Route 53 to resend a confirmation email to the registrant contact.</p><br>
    /// - On success, responds with [`ResendContactReachabilityEmailOutput`](crate::operation::resend_contact_reachability_email::ResendContactReachabilityEmailOutput) with field(s):
    ///   - [`domain_name(Option<String>)`](crate::operation::resend_contact_reachability_email::ResendContactReachabilityEmailOutput::domain_name): <p>The domain name for which you requested a confirmation email.</p>
    ///   - [`email_address(Option<String>)`](crate::operation::resend_contact_reachability_email::ResendContactReachabilityEmailOutput::email_address): <p>The email address for the registrant contact at the time that we sent the verification email.</p>
    ///   - [`is_already_verified(Option<bool>)`](crate::operation::resend_contact_reachability_email::ResendContactReachabilityEmailOutput::is_already_verified): <p><code>True</code> if the email address for the registrant contact has already been verified, and <code>false</code> otherwise. If the email address has already been verified, we don't send another confirmation email.</p>
    /// - On failure, responds with [`SdkError<ResendContactReachabilityEmailError>`](crate::operation::resend_contact_reachability_email::ResendContactReachabilityEmailError)
    pub fn resend_contact_reachability_email(
        &self,
    ) -> crate::operation::resend_contact_reachability_email::builders::ResendContactReachabilityEmailFluentBuilder {
        crate::operation::resend_contact_reachability_email::builders::ResendContactReachabilityEmailFluentBuilder::new(self.handle.clone())
    }
}