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 [`ListReportsForReportGroup`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`report_group_arn(impl Into<String>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::report_group_arn) / [`set_report_group_arn(Option<String>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::set_report_group_arn):<br>required: **true**<br><p>The ARN of the report group for which you want to return report ARNs.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::set_next_token):<br>required: **false**<br><p>During a previous call, the maximum number of items that can be returned is the value specified in <code>maxResults</code>. If there more items in the list, then a unique string called a <i>nextToken</i> is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p><br>
    ///   - [`sort_order(SortOrderType)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrderType>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::set_sort_order):<br>required: **false**<br><p>Use to specify whether the results are returned in ascending or descending order.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of paginated reports in this report group returned per response. Use <code>nextToken</code> to iterate pages in the list of returned <code>Report</code> objects. The default value is 100.</p><br>
    ///   - [`filter(ReportFilter)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::filter) / [`set_filter(Option<ReportFilter>)`](crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::set_filter):<br>required: **false**<br><p>A <code>ReportFilter</code> object used to filter the returned reports.</p><br>
    /// - On success, responds with [`ListReportsForReportGroupOutput`](crate::operation::list_reports_for_report_group::ListReportsForReportGroupOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_reports_for_report_group::ListReportsForReportGroupOutput::next_token): <p>During a previous call, the maximum number of items that can be returned is the value specified in <code>maxResults</code>. If there more items in the list, then a unique string called a <i>nextToken</i> is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>
    ///   - [`reports(Option<Vec::<String>>)`](crate::operation::list_reports_for_report_group::ListReportsForReportGroupOutput::reports): <p>The list of report ARNs.</p>
    /// - On failure, responds with [`SdkError<ListReportsForReportGroupError>`](crate::operation::list_reports_for_report_group::ListReportsForReportGroupError)
    pub fn list_reports_for_report_group(&self) -> crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder {
        crate::operation::list_reports_for_report_group::builders::ListReportsForReportGroupFluentBuilder::new(self.handle.clone())
    }
}