aws_sdk_codebuild/client/batch_get_report_groups.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 [`BatchGetReportGroups`](crate::operation::batch_get_report_groups::builders::BatchGetReportGroupsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`report_group_arns(impl Into<String>)`](crate::operation::batch_get_report_groups::builders::BatchGetReportGroupsFluentBuilder::report_group_arns) / [`set_report_group_arns(Option<Vec::<String>>)`](crate::operation::batch_get_report_groups::builders::BatchGetReportGroupsFluentBuilder::set_report_group_arns):<br>required: **true**<br><p>An array of report group ARNs that identify the report groups to return.</p><br>
7 /// - On success, responds with [`BatchGetReportGroupsOutput`](crate::operation::batch_get_report_groups::BatchGetReportGroupsOutput) with field(s):
8 /// - [`report_groups(Option<Vec::<ReportGroup>>)`](crate::operation::batch_get_report_groups::BatchGetReportGroupsOutput::report_groups): <p>The array of report groups returned by <code>BatchGetReportGroups</code>.</p>
9 /// - [`report_groups_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_report_groups::BatchGetReportGroupsOutput::report_groups_not_found): <p>An array of ARNs passed to <code>BatchGetReportGroups</code> that are not associated with a <code>ReportGroup</code>.</p>
10 /// - On failure, responds with [`SdkError<BatchGetReportGroupsError>`](crate::operation::batch_get_report_groups::BatchGetReportGroupsError)
11 pub fn batch_get_report_groups(&self) -> crate::operation::batch_get_report_groups::builders::BatchGetReportGroupsFluentBuilder {
12 crate::operation::batch_get_report_groups::builders::BatchGetReportGroupsFluentBuilder::new(self.handle.clone())
13 }
14}