1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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:
    ///   - [`kvs_arn(impl Into<String>)`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::kvs_arn) / [`set_kvs_arn(Option<String>)`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::set_kvs_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the Key Value Store.</p><br>
    /// - On success, responds with [`DescribeKeyValueStoreOutput`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput) with field(s):
    ///   - [`item_count(i32)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::item_count): <p>Number of key value pairs in the Key Value Store.</p>
    ///   - [`total_size_in_bytes(i64)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::total_size_in_bytes): <p>Total size of the Key Value Store in bytes.</p>
    ///   - [`kvs_arn(String)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::kvs_arn): <p>The Amazon Resource Name (ARN) of the Key Value Store.</p>
    ///   - [`created(DateTime)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::created): <p>Date and time when the Key Value Store was created.</p>
    ///   - [`e_tag(String)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::e_tag): <p>The version identifier for the current version of the Key Value Store.</p>
    ///   - [`last_modified(Option<DateTime>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::last_modified): <p>Date and time when the key value pairs in the Key Value Store was last modified.</p>
    ///   - [`status(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::status): <p>The current status of the Key Value Store.</p>
    ///   - [`failure_reason(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::failure_reason): <p>The reason for Key Value Store creation failure.</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())
    }
}