aws_sdk_codebuild/client/batch_get_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 [`BatchGetReports`](crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`BatchGetReportsOutput`](crate::operation::batch_get_reports::BatchGetReportsOutput) with field(s):
8 /// - [`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>
9 /// - [`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>
10 /// - On failure, responds with [`SdkError<BatchGetReportsError>`](crate::operation::batch_get_reports::BatchGetReportsError)
11 pub fn batch_get_reports(&self) -> crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder {
12 crate::operation::batch_get_reports::builders::BatchGetReportsFluentBuilder::new(self.handle.clone())
13 }
14}