aws_sdk_sesv2/client/list_deliverability_test_reports.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 [`ListDeliverabilityTestReports`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`ListDeliverabilityTestReportsOutput`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsOutput) with field(s):
10 /// - [`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>
11 /// - [`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>
12 /// - On failure, responds with [`SdkError<ListDeliverabilityTestReportsError>`](crate::operation::list_deliverability_test_reports::ListDeliverabilityTestReportsError)
13 pub fn list_deliverability_test_reports(
14 &self,
15 ) -> crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder {
16 crate::operation::list_deliverability_test_reports::builders::ListDeliverabilityTestReportsFluentBuilder::new(self.handle.clone())
17 }
18}