1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListDeliverabilityTestReports`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::set_next_token):<br>required: **false**<br><p>A token returned from a previous call to <code>ListDeliverabilityTestReports</code> to indicate the position in the list of predictive inbox placement tests.</p><br>
    ///   - [`page_size(i32)`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::page_size) / [`set_page_size(Option<i32>)`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::set_page_size):<br>required: **false**<br><p>The number of results to show in a single call to <code>ListDeliverabilityTestReports</code>. If the number of results is larger than the number you specified in this parameter, then the response includes a <code>NextToken</code> element, which you can use to obtain additional results.</p> <p>The value you specify has to be at least 0, and can be no more than 1000.</p><br>
    /// - On success, responds with [`ListDeliverabilityTestReportsOutput`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsOutput) with field(s):
    ///   - [`deliverability_test_reports(Vec::<DeliverabilityTestReport>)`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsOutput::deliverability_test_reports): <p>An object that contains a lists of predictive inbox placement tests that you've performed.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsOutput::next_token): <p>A token that indicates that there are additional predictive inbox placement tests to list. To view additional predictive inbox placement tests, issue another request to <code>ListDeliverabilityTestReports</code>, and pass this token in the <code>NextToken</code> parameter.</p>
    /// - On failure, responds with [`SdkError<ListDeliverabilityTestReportsError>`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsError)
    pub fn list_deliverability_test_reports(
        &self,
    ) -> crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder {
        crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::new(self.handle.clone())
    }
}