1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetReports`](crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`report_arns(impl Into<String>)`](crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder::report_arns) / [`set_report_arns(Option<Vec::<String>>)`](crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder::set_report_arns):<br>required: **true**<br><p>An array of ARNs that identify the <code>Report</code> objects to return.</p><br>
    /// - On success, responds with [`BatchGetReportsOutput`](crate::operation::batch_get_reports::BatchGetReportsOutput) with field(s):
    ///   - [`reports(Option<Vec::<Report>>)`](crate::operation::batch_get_reports::BatchGetReportsOutput::reports): <p>The array of <code>Report</code> objects returned by <code>BatchGetReports</code>.</p>
    ///   - [`reports_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_reports::BatchGetReportsOutput::reports_not_found): <p>An array of ARNs passed to <code>BatchGetReportGroups</code> that are not associated with a <code>Report</code>.</p>
    /// - On failure, responds with [`SdkError<BatchGetReportsError>`](crate::operation::batch_get_reports::BatchGetReportsError)
    pub fn batch_get_reports(&self) -> crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder {
        crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder::new(self.handle.clone())
    }
}