aws_sdk_omics/client/
get_reference_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 [`GetReferenceStore`](crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder::set_id):<br>required: **true**<br><p>The store's ID.</p><br>
7    /// - On success, responds with [`GetReferenceStoreOutput`](crate::operation::get_reference_store::GetReferenceStoreOutput) with field(s):
8    ///   - [`id(String)`](crate::operation::get_reference_store::GetReferenceStoreOutput::id): <p>The store's ID.</p>
9    ///   - [`arn(String)`](crate::operation::get_reference_store::GetReferenceStoreOutput::arn): <p>The store's ARN.</p>
10    ///   - [`name(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::name): <p>The store's name.</p>
11    ///   - [`description(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::description): <p>The store's description.</p>
12    ///   - [`sse_config(Option<SseConfig>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::sse_config): <p>The store's server-side encryption (SSE) settings.</p>
13    ///   - [`creation_time(DateTime)`](crate::operation::get_reference_store::GetReferenceStoreOutput::creation_time): <p>When the store was created.</p>
14    /// - On failure, responds with [`SdkError<GetReferenceStoreError>`](crate::operation::get_reference_store::GetReferenceStoreError)
15    pub fn get_reference_store(&self) -> crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder {
16        crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder::new(self.handle.clone())
17    }
18}