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
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteBrowserProfile`](crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`profile_id(impl Into<String>)`](crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder::profile_id) / [`set_profile_id(Option<String>)`](crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder::set_profile_id):<br>required: **true**<br><p>The unique identifier of the browser profile to delete.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request.</p><br>
    /// - On success, responds with [`DeleteBrowserProfileOutput`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput) with field(s):
    ///   - [`profile_id(String)`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput::profile_id): <p>The unique identifier of the deleted browser profile.</p>
    ///   - [`profile_arn(String)`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput::profile_arn): <p>The Amazon Resource Name (ARN) of the deleted browser profile.</p>
    ///   - [`status(BrowserProfileStatus)`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput::status): <p>The current status of the browser profile deletion.</p>
    ///   - [`last_updated_at(DateTime)`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput::last_updated_at): <p>The timestamp when the browser profile was last updated.</p>
    ///   - [`last_saved_at(Option<DateTime>)`](crate::operation::delete_browser_profile::DeleteBrowserProfileOutput::last_saved_at): <p>The timestamp when browser session data was last saved to this profile before deletion.</p>
    /// - On failure, responds with [`SdkError<DeleteBrowserProfileError>`](crate::operation::delete_browser_profile::DeleteBrowserProfileError)
    pub fn delete_browser_profile(&self) -> crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder {
        crate::operation::delete_browser_profile::builders::DeleteBrowserProfileFluentBuilder::new(self.handle.clone())
    }
}