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