1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateReportGroup`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`arn(impl Into<String>)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::arn) / [`set_arn(Option<String>)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::set_arn):<br>required: **true**<br><p> The ARN of the report group to update. </p><br>
    ///   - [`export_config(ReportExportConfig)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::export_config) / [`set_export_config(Option<ReportExportConfig>)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::set_export_config):<br>required: **false**<br><p> Used to specify an updated export type. Valid values are: </p>  <ul>   <li> <p> <code>S3</code>: The report results are exported to an S3 bucket. </p> </li>   <li> <p> <code>NO_EXPORT</code>: The report results are not exported. </p> </li>  </ul><br>
    ///   - [`tags(Tag)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::set_tags):<br>required: **false**<br><p> An updated list of tag key and value pairs associated with this report group. </p>  <p>These tags are available for use by Amazon Web Services services that support CodeBuild report group tags.</p><br>
    /// - On success, responds with [`UpdateReportGroupOutput`](crate::operation::update_report_group::UpdateReportGroupOutput) with field(s):
    ///   - [`report_group(Option<ReportGroup>)`](crate::operation::update_report_group::UpdateReportGroupOutput::report_group): <p> Information about the updated report group. </p>
    /// - On failure, responds with [`SdkError<UpdateReportGroupError>`](crate::operation::update_report_group::UpdateReportGroupError)
    pub fn update_report_group(&self) -> crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder {
        crate::operation::update_report_group::builders::UpdateReportGroupFluentBuilder::new(self.handle.clone())
    }
}