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