aws-sdk-bedrockagentcorecontrol 1.55.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 [`ListConfigurationBundles`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::set_next_token):<br>required: **false**<br><p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, enter the token returned in the <code>nextToken</code> field in the response in this field to return the next batch of results.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the <code>nextToken</code> field when making another request to return the next batch of results.</p><br>
    /// - On success, responds with [`ListConfigurationBundlesOutput`](crate::operation::list_configuration_bundles::ListConfigurationBundlesOutput) with field(s):
    ///   - [`bundles(Vec::<ConfigurationBundleSummary>)`](crate::operation::list_configuration_bundles::ListConfigurationBundlesOutput::bundles): <p>The list of configuration bundle summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_configuration_bundles::ListConfigurationBundlesOutput::next_token): <p>If the total number of results is greater than the <code>maxResults</code> value provided in the request, use this token when making another request in the <code>nextToken</code> field to return the next batch of results.</p>
    /// - On failure, responds with [`SdkError<ListConfigurationBundlesError>`](crate::operation::list_configuration_bundles::ListConfigurationBundlesError)
    pub fn list_configuration_bundles(&self) -> crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder {
        crate::operation::list_configuration_bundles::builders::ListConfigurationBundlesFluentBuilder::new(self.handle.clone())
    }
}