aws_sdk_omics/client/update_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 [`UpdateVariantStore`](crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder::set_name):<br>required: **true**<br><p>A name for the store.</p><br>
7 /// - [`description(impl Into<String>)`](crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder::set_description):<br>required: **false**<br><p>A description for the store.</p><br>
8 /// - On success, responds with [`UpdateVariantStoreOutput`](crate::operation::update_variant_store::UpdateVariantStoreOutput) with field(s):
9 /// - [`id(String)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::id): <p>The store's ID.</p>
10 /// - [`reference(Option<ReferenceItem>)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::reference): <p>The store's genome reference.</p>
11 /// - [`status(StoreStatus)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::status): <p>The store's status.</p>
12 /// - [`name(String)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::name): <p>The store's name.</p>
13 /// - [`description(String)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::description): <p>The store's description.</p>
14 /// - [`creation_time(DateTime)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::creation_time): <p>When the store was created.</p>
15 /// - [`update_time(DateTime)`](crate::operation::update_variant_store::UpdateVariantStoreOutput::update_time): <p>When the store was updated.</p>
16 /// - On failure, responds with [`SdkError<UpdateVariantStoreError>`](crate::operation::update_variant_store::UpdateVariantStoreError)
17 pub fn update_variant_store(&self) -> crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder {
18 crate::operation::update_variant_store::builders::UpdateVariantStoreFluentBuilder::new(self.handle.clone())
19 }
20}