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 [`BatchDeleteBuilds`](crate::operation::batch_delete_builds::builders::BatchDeleteBuildsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`ids(impl Into<String>)`](crate::operation::batch_delete_builds::builders::BatchDeleteBuildsFluentBuilder::ids) / [`set_ids(Option<Vec::<String>>)`](crate::operation::batch_delete_builds::builders::BatchDeleteBuildsFluentBuilder::set_ids):<br>required: **true**<br><p>The IDs of the builds to delete.</p><br>
    /// - On success, responds with [`BatchDeleteBuildsOutput`](crate::operation::batch_delete_builds::BatchDeleteBuildsOutput) with field(s):
    ///   - [`builds_deleted(Option<Vec::<String>>)`](crate::operation::batch_delete_builds::BatchDeleteBuildsOutput::builds_deleted): <p>The IDs of the builds that were successfully deleted.</p>
    ///   - [`builds_not_deleted(Option<Vec::<BuildNotDeleted>>)`](crate::operation::batch_delete_builds::BatchDeleteBuildsOutput::builds_not_deleted): <p>Information about any builds that could not be successfully deleted.</p>
    /// - On failure, responds with [`SdkError<BatchDeleteBuildsError>`](crate::operation::batch_delete_builds::BatchDeleteBuildsError)
    pub fn batch_delete_builds(&self) -> crate::operation::batch_delete_builds::builders::BatchDeleteBuildsFluentBuilder {
        crate::operation::batch_delete_builds::builders::BatchDeleteBuildsFluentBuilder::new(self.handle.clone())
    }
}