aws_sdk_omics/client/batch_delete_read_set.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 [`BatchDeleteReadSet`](crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`ids(impl Into<String>)`](crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder::ids) / [`set_ids(Option<Vec::<String>>)`](crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder::set_ids):<br>required: **true**<br><p>The read sets' IDs.</p><br>
7 /// - [`sequence_store_id(impl Into<String>)`](crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder::sequence_store_id) / [`set_sequence_store_id(Option<String>)`](crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder::set_sequence_store_id):<br>required: **true**<br><p>The read sets' sequence store ID.</p><br>
8 /// - On success, responds with [`BatchDeleteReadSetOutput`](crate::operation::batch_delete_read_set::BatchDeleteReadSetOutput) with field(s):
9 /// - [`errors(Option<Vec::<ReadSetBatchError>>)`](crate::operation::batch_delete_read_set::BatchDeleteReadSetOutput::errors): <p>Errors returned by individual delete operations.</p>
10 /// - On failure, responds with [`SdkError<BatchDeleteReadSetError>`](crate::operation::batch_delete_read_set::BatchDeleteReadSetError)
11 pub fn batch_delete_read_set(&self) -> crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder {
12 crate::operation::batch_delete_read_set::builders::BatchDeleteReadSetFluentBuilder::new(self.handle.clone())
13 }
14}