aws_sdk_omics/client/
get_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 [`GetVariantStore`](crate::operation::get_variant_store::builders::GetVariantStoreFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::get_variant_store::builders::GetVariantStoreFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_variant_store::builders::GetVariantStoreFluentBuilder::set_name):<br>required: **true**<br><p>The store's name.</p><br>
7    /// - On success, responds with [`GetVariantStoreOutput`](crate::operation::get_variant_store::GetVariantStoreOutput) with field(s):
8    ///   - [`id(String)`](crate::operation::get_variant_store::GetVariantStoreOutput::id): <p>The store's ID.</p>
9    ///   - [`reference(Option<ReferenceItem>)`](crate::operation::get_variant_store::GetVariantStoreOutput::reference): <p>The store's genome reference.</p>
10    ///   - [`status(StoreStatus)`](crate::operation::get_variant_store::GetVariantStoreOutput::status): <p>The store's status.</p>
11    ///   - [`store_arn(String)`](crate::operation::get_variant_store::GetVariantStoreOutput::store_arn): <p>The store's ARN.</p>
12    ///   - [`name(String)`](crate::operation::get_variant_store::GetVariantStoreOutput::name): <p>The store's name.</p>
13    ///   - [`description(String)`](crate::operation::get_variant_store::GetVariantStoreOutput::description): <p>The store's description.</p>
14    ///   - [`sse_config(Option<SseConfig>)`](crate::operation::get_variant_store::GetVariantStoreOutput::sse_config): <p>The store's server-side encryption (SSE) settings.</p>
15    ///   - [`creation_time(DateTime)`](crate::operation::get_variant_store::GetVariantStoreOutput::creation_time): <p>When the store was created.</p>
16    ///   - [`update_time(DateTime)`](crate::operation::get_variant_store::GetVariantStoreOutput::update_time): <p>When the store was updated.</p>
17    ///   - [`tags(HashMap::<String, String>)`](crate::operation::get_variant_store::GetVariantStoreOutput::tags): <p>The store's tags.</p>
18    ///   - [`status_message(String)`](crate::operation::get_variant_store::GetVariantStoreOutput::status_message): <p>The store's status message.</p>
19    ///   - [`store_size_bytes(i64)`](crate::operation::get_variant_store::GetVariantStoreOutput::store_size_bytes): <p>The store's size in bytes.</p>
20    /// - On failure, responds with [`SdkError<GetVariantStoreError>`](crate::operation::get_variant_store::GetVariantStoreError)
21    pub fn get_variant_store(&self) -> crate::operation::get_variant_store::builders::GetVariantStoreFluentBuilder {
22        crate::operation::get_variant_store::builders::GetVariantStoreFluentBuilder::new(self.handle.clone())
23    }
24}