aws_sdk_omics/client/delete_annotation_store.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 [`DeleteAnnotationStore`](crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder::set_name):<br>required: **true**<br><p>The store's name.</p><br>
7 /// - [`force(bool)`](crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder::force) / [`set_force(Option<bool>)`](crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder::set_force):<br>required: **false**<br><p>Whether to force deletion.</p><br>
8 /// - On success, responds with [`DeleteAnnotationStoreOutput`](crate::operation::delete_annotation_store::DeleteAnnotationStoreOutput) with field(s):
9 /// - [`status(StoreStatus)`](crate::operation::delete_annotation_store::DeleteAnnotationStoreOutput::status): <p>The store's status.</p>
10 /// - On failure, responds with [`SdkError<DeleteAnnotationStoreError>`](crate::operation::delete_annotation_store::DeleteAnnotationStoreError)
11 pub fn delete_annotation_store(&self) -> crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder {
12 crate::operation::delete_annotation_store::builders::DeleteAnnotationStoreFluentBuilder::new(self.handle.clone())
13 }
14}