aws-sdk-bedrockagentcore 1.45.0

AWS SDK for Amazon Bedrock AgentCore
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateBrowserStream`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`browser_identifier(impl Into<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::browser_identifier) / [`set_browser_identifier(Option<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::set_browser_identifier):<br>required: **true**<br><p>The identifier of the browser.</p><br>
    ///   - [`session_id(impl Into<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::session_id) / [`set_session_id(Option<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::set_session_id):<br>required: **true**<br><p>The identifier of the browser session.</p><br>
    ///   - [`stream_update(StreamUpdate)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::stream_update) / [`set_stream_update(Option<StreamUpdate>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::set_stream_update):<br>required: **true**<br><p>The update to apply to the browser stream.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error.</p><br>
    /// - On success, responds with [`UpdateBrowserStreamOutput`](crate::operation::update_browser_stream::UpdateBrowserStreamOutput) with field(s):
    ///   - [`browser_identifier(String)`](crate::operation::update_browser_stream::UpdateBrowserStreamOutput::browser_identifier): <p>The identifier of the browser.</p>
    ///   - [`session_id(String)`](crate::operation::update_browser_stream::UpdateBrowserStreamOutput::session_id): <p>The identifier of the browser session.</p>
    ///   - [`streams(Option<BrowserSessionStream>)`](crate::operation::update_browser_stream::UpdateBrowserStreamOutput::streams): <p>The collection of streams associated with a browser session in Amazon Bedrock AgentCore. These streams provide different ways to interact with and observe the browser session, including programmatic control and visual representation of the browser content.</p>
    ///   - [`updated_at(DateTime)`](crate::operation::update_browser_stream::UpdateBrowserStreamOutput::updated_at): <p>The time at which the browser stream was updated.</p>
    /// - On failure, responds with [`SdkError<UpdateBrowserStreamError>`](crate::operation::update_browser_stream::UpdateBrowserStreamError)
    pub fn update_browser_stream(&self) -> crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder {
        crate::operation::update_browser_stream::builders::UpdateBrowserStreamFluentBuilder::new(self.handle.clone())
    }
}