1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetReferenceStore`](crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The store's ID.</p>
    /// - On success, responds with [`GetReferenceStoreOutput`](crate::operation::get_reference_store::GetReferenceStoreOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::id): <p>The store's ID.</p>
    ///   - [`arn(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::arn): <p>The store's ARN.</p>
    ///   - [`name(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::name): <p>The store's name.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::description): <p>The store's description.</p>
    ///   - [`sse_config(Option<SseConfig>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::sse_config): <p>The store's server-side encryption (SSE) settings.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::get_reference_store::GetReferenceStoreOutput::creation_time): <p>When the store was created.</p>
    /// - On failure, responds with [`SdkError<GetReferenceStoreError>`](crate::operation::get_reference_store::GetReferenceStoreError)
    pub fn get_reference_store(&self) -> crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder {
        crate::operation::get_reference_store::builders::GetReferenceStoreFluentBuilder::new(self.handle.clone())
    }
}