1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchDeleteClusterSnapshots`](crate::operation::batch_delete_cluster_snapshots::builders::BatchDeleteClusterSnapshotsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identifiers(DeleteClusterSnapshotMessage)`](crate::operation::batch_delete_cluster_snapshots::builders::BatchDeleteClusterSnapshotsFluentBuilder::identifiers) / [`set_identifiers(Option<Vec::<DeleteClusterSnapshotMessage>>)`](crate::operation::batch_delete_cluster_snapshots::builders::BatchDeleteClusterSnapshotsFluentBuilder::set_identifiers):<br>required: **true**<br><p>A list of identifiers for the snapshots that you want to delete.</p><br>
    /// - On success, responds with [`BatchDeleteClusterSnapshotsOutput`](crate::operation::batch_delete_cluster_snapshots::BatchDeleteClusterSnapshotsOutput) with field(s):
    ///   - [`resources(Option<Vec::<String>>)`](crate::operation::batch_delete_cluster_snapshots::BatchDeleteClusterSnapshotsOutput::resources): <p>A list of the snapshot identifiers that were deleted.</p>
    ///   - [`errors(Option<Vec::<SnapshotErrorMessage>>)`](crate::operation::batch_delete_cluster_snapshots::BatchDeleteClusterSnapshotsOutput::errors): <p>A list of any errors returned.</p>
    /// - On failure, responds with [`SdkError<BatchDeleteClusterSnapshotsError>`](crate::operation::batch_delete_cluster_snapshots::BatchDeleteClusterSnapshotsError)
    pub fn batch_delete_cluster_snapshots(
        &self,
    ) -> crate::operation::batch_delete_cluster_snapshots::builders::BatchDeleteClusterSnapshotsFluentBuilder {
        crate::operation::batch_delete_cluster_snapshots::builders::BatchDeleteClusterSnapshotsFluentBuilder::new(self.handle.clone())
    }
}