aws_sdk_cloudfrontkeyvaluestore/client/
describe_key_value_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 [`DescribeKeyValueStore`](crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    /// - On success, responds with [`DescribeKeyValueStoreOutput`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput) with field(s):
8    ///   - [`item_count(i32)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::item_count): <p>Number of key value pairs in the Key Value Store.</p>
9    ///   - [`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>
10    ///   - [`kvs_arn(String)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::kvs_arn): <p>The Amazon Resource Name (ARN) of the Key Value Store.</p>
11    ///   - [`created(DateTime)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::created): <p>Date and time when the Key Value Store was created.</p>
12    ///   - [`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>
13    ///   - [`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>
14    ///   - [`status(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::status): <p>The current status of the Key Value Store.</p>
15    ///   - [`failure_reason(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::failure_reason): <p>The reason for Key Value Store creation failure.</p>
16    /// - On failure, responds with [`SdkError<DescribeKeyValueStoreError>`](crate::operation::describe_key_value_store::DescribeKeyValueStoreError)
17    pub fn describe_key_value_store(&self) -> crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder {
18        crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::new(self.handle.clone())
19    }
20}