aws-sdk-bedrockagentcorecontrol 1.32.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 [`ListBrowserProfiles`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in the response.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p>A token to retrieve the next page of results.</p><br>
    /// - On success, responds with [`ListBrowserProfilesOutput`](crate::operation::list_browser_profiles::ListBrowserProfilesOutput) with field(s):
    ///   - [`profile_summaries(Vec::<BrowserProfileSummary>)`](crate::operation::list_browser_profiles::ListBrowserProfilesOutput::profile_summaries): <p>The list of browser profile summaries.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_browser_profiles::ListBrowserProfilesOutput::next_token): <p>A token to retrieve the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListBrowserProfilesError>`](crate::operation::list_browser_profiles::ListBrowserProfilesError)
    pub fn list_browser_profiles(&self) -> crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder {
        crate::operation::list_browser_profiles::builders::ListBrowserProfilesFluentBuilder::new(self.handle.clone())
    }
}