aws_sdk_cloudfront/client/delete_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 [`DeleteKeyValueStore`](crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder::set_name):<br>required: **true**<br><p>The name of the key value store.</p><br>
7 /// - [`if_match(impl Into<String>)`](crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder::if_match) / [`set_if_match(Option<String>)`](crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder::set_if_match):<br>required: **true**<br><p>The key value store to delete, if a match occurs.</p><br>
8 /// - On success, responds with [`DeleteKeyValueStoreOutput`](crate::operation::delete_key_value_store::DeleteKeyValueStoreOutput)
9 /// - On failure, responds with [`SdkError<DeleteKeyValueStoreError>`](crate::operation::delete_key_value_store::DeleteKeyValueStoreError)
10 pub fn delete_key_value_store(&self) -> crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder {
11 crate::operation::delete_key_value_store::builders::DeleteKeyValueStoreFluentBuilder::new(self.handle.clone())
12 }
13}