aws-sdk-bedrockagentcorecontrol 1.45.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 [`GetBrowser`](crate::operation::get_browser::builders::GetBrowserFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`browser_id(impl Into<String>)`](crate::operation::get_browser::builders::GetBrowserFluentBuilder::browser_id) / [`set_browser_id(Option<String>)`](crate::operation::get_browser::builders::GetBrowserFluentBuilder::set_browser_id):<br>required: **true**<br><p>The unique identifier of the browser to retrieve.</p><br>
    /// - On success, responds with [`GetBrowserOutput`](crate::operation::get_browser::GetBrowserOutput) with field(s):
    ///   - [`browser_id(String)`](crate::operation::get_browser::GetBrowserOutput::browser_id): <p>The unique identifier of the browser.</p>
    ///   - [`browser_arn(String)`](crate::operation::get_browser::GetBrowserOutput::browser_arn): <p>The Amazon Resource Name (ARN) of the browser.</p>
    ///   - [`name(String)`](crate::operation::get_browser::GetBrowserOutput::name): <p>The name of the browser.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_browser::GetBrowserOutput::description): <p>The description of the browser.</p>
    ///   - [`execution_role_arn(Option<String>)`](crate::operation::get_browser::GetBrowserOutput::execution_role_arn): <p>The IAM role ARN that provides permissions for the browser.</p>
    ///   - [`network_configuration(Option<BrowserNetworkConfiguration>)`](crate::operation::get_browser::GetBrowserOutput::network_configuration): <p>The network configuration for a browser. This structure defines how the browser connects to the network.</p>
    ///   - [`recording(Option<RecordingConfig>)`](crate::operation::get_browser::GetBrowserOutput::recording): <p>The recording configuration for a browser. This structure defines how browser sessions are recorded.</p>
    ///   - [`browser_signing(Option<BrowserSigningConfigOutput>)`](crate::operation::get_browser::GetBrowserOutput::browser_signing): <p>The browser signing configuration that shows whether cryptographic agent identification is enabled for web bot authentication.</p>
    ///   - [`enterprise_policies(Option<Vec::<BrowserEnterprisePolicy>>)`](crate::operation::get_browser::GetBrowserOutput::enterprise_policies): <p>The list of enterprise policy files configured for the browser.</p>
    ///   - [`certificates(Option<Vec::<Certificate>>)`](crate::operation::get_browser::GetBrowserOutput::certificates): <p>The list of certificates configured for the browser.</p>
    ///   - [`status(BrowserStatus)`](crate::operation::get_browser::GetBrowserOutput::status): <p>The current status of the browser.</p>
    ///   - [`failure_reason(Option<String>)`](crate::operation::get_browser::GetBrowserOutput::failure_reason): <p>The reason for failure if the browser is in a failed state.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_browser::GetBrowserOutput::created_at): <p>The timestamp when the browser was created.</p>
    ///   - [`last_updated_at(DateTime)`](crate::operation::get_browser::GetBrowserOutput::last_updated_at): <p>The timestamp when the browser was last updated.</p>
    /// - On failure, responds with [`SdkError<GetBrowserError>`](crate::operation::get_browser::GetBrowserError)
    pub fn get_browser(&self) -> crate::operation::get_browser::builders::GetBrowserFluentBuilder {
        crate::operation::get_browser::builders::GetBrowserFluentBuilder::new(self.handle.clone())
    }
}