aws-sdk-bedrockagentcorecontrol 1.42.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetBrowserProfile`](crate::operation::get_browser_profile::builders::GetBrowserProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`profile_id(impl Into<String>)`](crate::operation::get_browser_profile::builders::GetBrowserProfileFluentBuilder::profile_id) / [`set_profile_id(Option<String>)`](crate::operation::get_browser_profile::builders::GetBrowserProfileFluentBuilder::set_profile_id):<br>required: **true**<br><p>The unique identifier of the browser profile to retrieve.</p><br>
    /// - On success, responds with [`GetBrowserProfileOutput`](crate::operation::get_browser_profile::GetBrowserProfileOutput) with field(s):
    ///   - [`profile_id(String)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::profile_id): <p>The unique identifier of the browser profile.</p>
    ///   - [`profile_arn(String)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::profile_arn): <p>The Amazon Resource Name (ARN) of the browser profile.</p>
    ///   - [`name(String)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::name): <p>The name of the browser profile.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::description): <p>The description of the browser profile.</p>
    ///   - [`status(BrowserProfileStatus)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::status): <p>The current status of the browser profile.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::created_at): <p>The timestamp when the browser profile was created.</p>
    ///   - [`last_updated_at(DateTime)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::last_updated_at): <p>The timestamp when the browser profile was last updated.</p>
    ///   - [`last_saved_at(Option<DateTime>)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::last_saved_at): <p>The timestamp when browser session data was last saved to this profile.</p>
    ///   - [`last_saved_browser_session_id(Option<String>)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::last_saved_browser_session_id): <p>The identifier of the browser session from which data was last saved to this profile.</p>
    ///   - [`last_saved_browser_id(Option<String>)`](crate::operation::get_browser_profile::GetBrowserProfileOutput::last_saved_browser_id): <p>The identifier of the browser from which data was last saved to this profile.</p>
    /// - On failure, responds with [`SdkError<GetBrowserProfileError>`](crate::operation::get_browser_profile::GetBrowserProfileError)
    pub fn get_browser_profile(&self) -> crate::operation::get_browser_profile::builders::GetBrowserProfileFluentBuilder {
        crate::operation::get_browser_profile::builders::GetBrowserProfileFluentBuilder::new(self.handle.clone())
    }
}