// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListAgentKnowledgeBases`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`agent_id(impl Into<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::agent_id) / [`set_agent_id(Option<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::set_agent_id):<br>required: **true**<br>Id generated at the server side when an Agent is created<br>
/// - [`agent_version(impl Into<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::agent_version) / [`set_agent_version(Option<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::set_agent_version):<br>required: **true**<br>Version number generated when a version is created<br>
/// - [`max_results(i32)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::set_max_results):<br>required: **false**<br>Max Results.<br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::set_next_token):<br>required: **false**<br>Opaque continuation token of previous paginated response.<br>
/// - On success, responds with [`ListAgentKnowledgeBasesOutput`](crate::operation::list_agent_knowledge_bases::ListAgentKnowledgeBasesOutput) with field(s):
/// - [`agent_knowledge_base_summaries(Vec::<AgentKnowledgeBaseSummary>)`](crate::operation::list_agent_knowledge_bases::ListAgentKnowledgeBasesOutput::agent_knowledge_base_summaries): List of Agent Knowledge Base Summaries
/// - [`next_token(Option<String>)`](crate::operation::list_agent_knowledge_bases::ListAgentKnowledgeBasesOutput::next_token): Opaque continuation token of previous paginated response.
/// - On failure, responds with [`SdkError<ListAgentKnowledgeBasesError>`](crate::operation::list_agent_knowledge_bases::ListAgentKnowledgeBasesError)
pub fn list_agent_knowledge_bases(&self) -> crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder {
crate::operation::list_agent_knowledge_bases::builders::ListAgentKnowledgeBasesFluentBuilder::new(self.handle.clone())
}
}