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