aws_sdk_bedrockagentcorecontrol/client/get_browser.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetBrowser`](crate::operation::get_browser::builders::GetBrowserFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`GetBrowserOutput`](crate::operation::get_browser::GetBrowserOutput) with field(s):
8 /// - [`browser_id(String)`](crate::operation::get_browser::GetBrowserOutput::browser_id): <p>The unique identifier of the browser.</p>
9 /// - [`browser_arn(String)`](crate::operation::get_browser::GetBrowserOutput::browser_arn): <p>The Amazon Resource Name (ARN) of the browser.</p>
10 /// - [`name(String)`](crate::operation::get_browser::GetBrowserOutput::name): <p>The name of the browser.</p>
11 /// - [`description(Option<String>)`](crate::operation::get_browser::GetBrowserOutput::description): <p>The description of the browser.</p>
12 /// - [`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>
13 /// - [`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>
14 /// - [`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>
15 /// - [`status(BrowserStatus)`](crate::operation::get_browser::GetBrowserOutput::status): <p>The current status of the browser.</p>
16 /// - [`created_at(DateTime)`](crate::operation::get_browser::GetBrowserOutput::created_at): <p>The timestamp when the browser was created.</p>
17 /// - [`last_updated_at(DateTime)`](crate::operation::get_browser::GetBrowserOutput::last_updated_at): <p>The timestamp when the browser was last updated.</p>
18 /// - On failure, responds with [`SdkError<GetBrowserError>`](crate::operation::get_browser::GetBrowserError)
19 pub fn get_browser(&self) -> crate::operation::get_browser::builders::GetBrowserFluentBuilder {
20 crate::operation::get_browser::builders::GetBrowserFluentBuilder::new(self.handle.clone())
21 }
22}