1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeKeyValueStore`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Key Value Store.</p><br>
    /// - On success, responds with [`DescribeKeyValueStoreOutput`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput) with field(s):
    ///   - [`key_value_store(Option<KeyValueStore>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::key_value_store): <p>The resulting Key Value Store.</p>
    ///   - [`e_tag(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::e_tag): <p>The ETag of the resulting Key Value Store.</p>
    /// - On failure, responds with [`SdkError<DescribeKeyValueStoreError>`](crate::operation::describe_key_value_store::DescribeKeyValueStoreError)
    pub fn describe_key_value_store(&self) -> crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder {
        crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::new(self.handle.clone())
    }
}