aws-sdk-bedrockagentcorecontrol 1.64.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
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListHarnessEndpoints`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`harness_id(impl Into<String>)`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::harness_id) / [`set_harness_id(Option<String>)`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::set_harness_id):<br>required: **true**<br><p>The ID of the harness whose endpoints are listed.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::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_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results.</p><br>
    /// - On success, responds with [`ListHarnessEndpointsOutput`](crate::operation::list_harness_endpoints::ListHarnessEndpointsOutput) with field(s):
    ///   - [`endpoints(Vec::<HarnessEndpoint>)`](crate::operation::list_harness_endpoints::ListHarnessEndpointsOutput::endpoints): <p>The list of harness endpoints.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_harness_endpoints::ListHarnessEndpointsOutput::next_token): <p>The token for the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListHarnessEndpointsError>`](crate::operation::list_harness_endpoints::ListHarnessEndpointsError)
    pub fn list_harness_endpoints(&self) -> crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder {
        crate::operation::list_harness_endpoints::builders::ListHarnessEndpointsFluentBuilder::new(self.handle.clone())
    }
}