aws_sdk_cloudfront/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 /// - [`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>
7 /// - On success, responds with [`DescribeKeyValueStoreOutput`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput) with field(s):
8 /// - [`key_value_store(Option<KeyValueStore>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::key_value_store): <p>The resulting key value store.</p>
9 /// - [`e_tag(Option<String>)`](crate::operation::describe_key_value_store::DescribeKeyValueStoreOutput::e_tag): <p>The <code>ETag</code> of the resulting key value store.</p>
10 /// - On failure, responds with [`SdkError<DescribeKeyValueStoreError>`](crate::operation::describe_key_value_store::DescribeKeyValueStoreError)
11 pub fn describe_key_value_store(&self) -> crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder {
12 crate::operation::describe_key_value_store::builders::DescribeKeyValueStoreFluentBuilder::new(self.handle.clone())
13 }
14}