1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateAnnotationStoreVersion`](crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`UpdateAnnotationStoreVersionOutput`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput) with field(s):
    ///   - [`store_id(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::store_id): <p>The annotation store ID.</p>
    ///   - [`id(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::id): <p>The annotation store version ID.</p>
    ///   - [`status(VersionStatus)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::status): <p>The status of an annotation store version.</p>
    ///   - [`name(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::name): <p>The name of an annotation store.</p>
    ///   - [`version_name(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::version_name): <p>The name of an annotation store version.</p>
    ///   - [`description(String)`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionOutput::description): <p>The description of an annotation store version.</p>
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<UpdateAnnotationStoreVersionError>`](crate::operation::update_annotation_store_version::UpdateAnnotationStoreVersionError)
    pub fn update_annotation_store_version(
        &self,
    ) -> crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder {
        crate::operation::update_annotation_store_version::builders::UpdateAnnotationStoreVersionFluentBuilder::new(self.handle.clone())
    }
}