aws_sdk_omics/client/
update_annotation_store_version.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 [`UpdateAnnotationStoreVersion`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::set_name):<br>required: **true**<br><p>The name of an annotation store.</p><br>
7    ///   - [`version_name(impl Into<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::version_name) / [`set_version_name(Option<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::set_version_name):<br>required: **true**<br><p>The name of an annotation store version.</p><br>
8    ///   - [`description(impl Into<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::set_description):<br>required: **false**<br><p>The description of an annotation store.</p><br>
9    /// - On success, responds with [`UpdateAnnotationStoreVersionOutput`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput) with field(s):
10    ///   - [`store_id(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::store_id): <p>The annotation store ID.</p>
11    ///   - [`id(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::id): <p>The annotation store version ID.</p>
12    ///   - [`status(VersionStatus)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::status): <p>The status of an annotation store version.</p>
13    ///   - [`name(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::name): <p>The name of an annotation store.</p>
14    ///   - [`version_name(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::version_name): <p>The name of an annotation store version.</p>
15    ///   - [`description(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::description): <p>The description of an annotation store version.</p>
16    ///   - [`creation_time(DateTime)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::creation_time): <p>The time stamp for when an annotation store version was created.</p>
17    ///   - [`update_time(DateTime)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::update_time): <p>The time stamp for when an annotation store version was updated.</p>
18    /// - On failure, responds with [`SdkError<UpdateAnnotationStoreVersionError>`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionError)
19    pub fn update_annotation_store_version(
20        &self,
21    ) -> crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder {
22        crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::new(self.handle.clone())
23    }
24}