1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDeliverabilityTestReport`](crate::operation::get_deliverability_test_report::builders::GetDeliverabilityTestReportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`report_id(impl Into<String>)`](crate::operation::get_deliverability_test_report::builders::GetDeliverabilityTestReportFluentBuilder::report_id) / [`set_report_id(Option<String>)`](crate::operation::get_deliverability_test_report::builders::GetDeliverabilityTestReportFluentBuilder::set_report_id):<br>required: **true**<br><p>A unique string that identifies the predictive inbox placement test.</p><br>
    /// - On success, responds with [`GetDeliverabilityTestReportOutput`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput) with field(s):
    ///   - [`deliverability_test_report(Option<DeliverabilityTestReport>)`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput::deliverability_test_report): <p>An object that contains the results of the predictive inbox placement test.</p>
    ///   - [`overall_placement(Option<PlacementStatistics>)`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput::overall_placement): <p>An object that specifies how many test messages that were sent during the predictive inbox placement test were delivered to recipients' inboxes, how many were sent to recipients' spam folders, and how many weren't delivered.</p>
    ///   - [`isp_placements(Vec::<IspPlacement>)`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput::isp_placements): <p>An object that describes how the test email was handled by several email providers, including Gmail, Hotmail, Yahoo, AOL, and others.</p>
    ///   - [`message(Option<String>)`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput::message): <p>An object that contains the message that you sent when you performed this predictive inbox placement test.</p>
    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportOutput::tags): <p>An array of objects that define the tags (keys and values) that are associated with the predictive inbox placement test.</p>
    /// - On failure, responds with [`SdkError<GetDeliverabilityTestReportError>`](crate::operation::get_deliverability_test_report::GetDeliverabilityTestReportError)
    pub fn get_deliverability_test_report(
        &self,
    ) -> crate::operation::get_deliverability_test_report::builders::GetDeliverabilityTestReportFluentBuilder {
        crate::operation::get_deliverability_test_report::builders::GetDeliverabilityTestReportFluentBuilder::new(self.handle.clone())
    }
}