1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListKeyValueStores`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`marker(impl Into<String>)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::marker) / [`set_marker(Option<String>)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::set_marker):<br>required: **false**<br><p>The marker associated with the Key Value Stores list.</p><br>
    ///   - [`max_items(i32)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::max_items) / [`set_max_items(Option<i32>)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::set_max_items):<br>required: **false**<br><p>The maximum number of items in the Key Value Stores list.</p><br>
    ///   - [`status(impl Into<String>)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::status) / [`set_status(Option<String>)`](crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::set_status):<br>required: **false**<br><p>The status of the request for the Key Value Stores list.</p><br>
    /// - On success, responds with [`ListKeyValueStoresOutput`](crate::operation::list_key_value_stores::ListKeyValueStoresOutput) with field(s):
    ///   - [`key_value_store_list(Option<KeyValueStoreList>)`](crate::operation::list_key_value_stores::ListKeyValueStoresOutput::key_value_store_list): <p>The resulting Key Value Stores list.</p>
    /// - On failure, responds with [`SdkError<ListKeyValueStoresError>`](crate::operation::list_key_value_stores::ListKeyValueStoresError)
    pub fn list_key_value_stores(&self) -> crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder {
        crate::operation::list_key_value_stores::builders::ListKeyValueStoresFluentBuilder::new(self.handle.clone())
    }
}