aws_sdk_omics/client/delete_batch.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 [`DeleteBatch`](crate::operation::delete_batch::builders::DeleteBatchFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`batch_id(impl Into<String>)`](crate::operation::delete_batch::builders::DeleteBatchFluentBuilder::batch_id) / [`set_batch_id(Option<String>)`](crate::operation::delete_batch::builders::DeleteBatchFluentBuilder::set_batch_id):<br>required: **true**<br><p>The identifier portion of the run batch ARN.</p><br>
7 /// - On success, responds with [`DeleteBatchOutput`](crate::operation::delete_batch::DeleteBatchOutput)
8 /// - On failure, responds with [`SdkError<DeleteBatchError>`](crate::operation::delete_batch::DeleteBatchError)
9 pub fn delete_batch(&self) -> crate::operation::delete_batch::builders::DeleteBatchFluentBuilder {
10 crate::operation::delete_batch::builders::DeleteBatchFluentBuilder::new(self.handle.clone())
11 }
12}