aws_sdk_omics/client/get_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 [`GetAnnotationStoreVersion`](crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder::set_name):<br>required: **true**<br><p>The name given to an annotation store version to distinguish it from others.</p><br>
7 /// - [`version_name(impl Into<String>)`](crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder::version_name) / [`set_version_name(Option<String>)`](crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder::set_version_name):<br>required: **true**<br><p>The name given to an annotation store version to distinguish it from others.</p><br>
8 /// - On success, responds with [`GetAnnotationStoreVersionOutput`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput) with field(s):
9 /// - [`store_id(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::store_id): <p>The store ID for annotation store version.</p>
10 /// - [`id(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::id): <p>The annotation store version ID.</p>
11 /// - [`status(VersionStatus)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::status): <p>The status of an annotation store version.</p>
12 /// - [`version_arn(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::version_arn): <p>The Arn for the annotation store.</p>
13 /// - [`name(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::name): <p>The name of the annotation store.</p>
14 /// - [`version_name(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::version_name): <p>The name given to an annotation store version to distinguish it from others.</p>
15 /// - [`description(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::description): <p>The description for an annotation store version.</p>
16 /// - [`creation_time(DateTime)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::creation_time): <p>The time stamp for when an annotation store version was created.</p>
17 /// - [`update_time(DateTime)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::update_time): <p>The time stamp for when an annotation store version was updated.</p>
18 /// - [`tags(HashMap::<String, String>)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::tags): <p>Any tags associated with an annotation store version.</p>
19 /// - [`version_options(Option<VersionOptions>)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::version_options): <p>The options for an annotation store version.</p>
20 /// - [`status_message(String)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::status_message): <p>The status of an annotation store version.</p>
21 /// - [`version_size_bytes(i64)`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionOutput::version_size_bytes): <p>The size of the annotation store version in Bytes.</p>
22 /// - On failure, responds with [`SdkError<GetAnnotationStoreVersionError>`](crate::operation::get_annotation_store_version::GetAnnotationStoreVersionError)
23 pub fn get_annotation_store_version(&self) -> crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder {
24 crate::operation::get_annotation_store_version::builders::GetAnnotationStoreVersionFluentBuilder::new(self.handle.clone())
25 }
26}