aws-sdk-bedrockagentcorecontrol 1.47.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
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 [`ListHarnesses`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a single call.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results.</p><br>
    /// - On success, responds with [`ListHarnessesOutput`](crate::operation::list_harnesses::ListHarnessesOutput) with field(s):
    ///   - [`harnesses(Vec::<HarnessSummary>)`](crate::operation::list_harnesses::ListHarnessesOutput::harnesses): <p>The list of harness summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_harnesses::ListHarnessesOutput::next_token): <p>The token for the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListHarnessesError>`](crate::operation::list_harnesses::ListHarnessesError)
    pub fn list_harnesses(&self) -> crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder {
        crate::operation::list_harnesses::builders::ListHarnessesFluentBuilder::new(self.handle.clone())
    }
}