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 [`ListAgents`](crate::operation::list_agents::builders::ListAgentsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_agents::builders::ListAgentsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_agents::builders::ListAgentsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_agents::builders::ListAgentsFluentBuilder::set_max_results): <p>The maximum number of agents to list.</p>
/// - [`next_token(impl Into<String>)`](crate::operation::list_agents::builders::ListAgentsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_agents::builders::ListAgentsFluentBuilder::set_next_token): <p>An opaque string that indicates the position at which to begin the next list of agents.</p>
/// - On success, responds with [`ListAgentsOutput`](crate::operation::list_agents::ListAgentsOutput) with field(s):
/// - [`agents(Option<Vec<AgentListEntry>>)`](crate::operation::list_agents::ListAgentsOutput::agents): <p>A list of agents in your account.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_agents::ListAgentsOutput::next_token): <p>An opaque string that indicates the position at which to begin returning the next list of agents.</p>
/// - On failure, responds with [`SdkError<ListAgentsError>`](crate::operation::list_agents::ListAgentsError)
pub fn list_agents(&self) -> crate::operation::list_agents::builders::ListAgentsFluentBuilder {
crate::operation::list_agents::builders::ListAgentsFluentBuilder::new(self.handle.clone())
}
}