aws-sdk-bedrockagentcorecontrol 1.31.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 [`CreateBrowserProfile`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::set_name):<br>required: **true**<br><p>The name of the browser profile. The name must be unique within your account and can contain alphanumeric characters and underscores.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::set_description):<br>required: **false**<br><p>A description of the browser profile. Use this field to describe the purpose or contents of the profile.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::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 AgentCore ignores the request but does not return an error.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::set_tags):<br>required: **false**<br><p>A map of tag keys and values to assign to the browser profile. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p><br>
    /// - On success, responds with [`CreateBrowserProfileOutput`](crate::operation::create_browser_profile::CreateBrowserProfileOutput) with field(s):
    ///   - [`profile_id(String)`](crate::operation::create_browser_profile::CreateBrowserProfileOutput::profile_id): <p>The unique identifier of the created browser profile.</p>
    ///   - [`profile_arn(String)`](crate::operation::create_browser_profile::CreateBrowserProfileOutput::profile_arn): <p>The Amazon Resource Name (ARN) of the created browser profile.</p>
    ///   - [`created_at(DateTime)`](crate::operation::create_browser_profile::CreateBrowserProfileOutput::created_at): <p>The timestamp when the browser profile was created.</p>
    ///   - [`status(BrowserProfileStatus)`](crate::operation::create_browser_profile::CreateBrowserProfileOutput::status): <p>The current status of the browser profile.</p>
    /// - On failure, responds with [`SdkError<CreateBrowserProfileError>`](crate::operation::create_browser_profile::CreateBrowserProfileError)
    pub fn create_browser_profile(&self) -> crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder {
        crate::operation::create_browser_profile::builders::CreateBrowserProfileFluentBuilder::new(self.handle.clone())
    }
}