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 [`ListBusinessReportSchedules`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token used to list the remaining schedules from the previous API call.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of schedules listed in the call.</p><br>
    /// - On success, responds with [`ListBusinessReportSchedulesOutput`](crate::operation::list_business_report_schedules::ListBusinessReportSchedulesOutput) with field(s):
    ///   - [`business_report_schedules(Option<Vec::<BusinessReportSchedule>>)`](crate::operation::list_business_report_schedules::ListBusinessReportSchedulesOutput::business_report_schedules): <p>The schedule of the reports.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_business_report_schedules::ListBusinessReportSchedulesOutput::next_token): <p>The token used to list the remaining schedules from the previous API call.</p>
    /// - On failure, responds with [`SdkError<ListBusinessReportSchedulesError>`](crate::operation::list_business_report_schedules::ListBusinessReportSchedulesError)
    #[deprecated(note = "Alexa For Business is no longer supported")]
    pub fn list_business_report_schedules(
        &self,
    ) -> crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder {
        crate::operation::list_business_report_schedules::builders::ListBusinessReportSchedulesFluentBuilder::new(self.handle.clone())
    }
}