Skip to content

Bedrock Agentcore Control  >  Operations  >  delete_browser

delete_browser

Operation

delete_browser async

delete_browser(input: DeleteBrowserInput, plugins: list[Plugin] | None = None) -> DeleteBrowserOutput

Deletes a custom browser.

Parameters:

Name Type Description Default
input DeleteBrowserInput

An instance of DeleteBrowserInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
DeleteBrowserOutput

An instance of DeleteBrowserOutput.

Input

DeleteBrowserInput dataclass

Dataclass for DeleteBrowserInput structure.

Attributes

browser_id class-attribute instance-attribute
browser_id: str | None = None

The unique identifier of the browser to delete.

client_token class-attribute instance-attribute
client_token: str | None = None

A unique, case-sensitive identifier to ensure idempotency of the request.

Output

DeleteBrowserOutput dataclass

Dataclass for DeleteBrowserOutput structure.

Attributes

browser_id instance-attribute
browser_id: str

The unique identifier of the deleted browser.

last_updated_at instance-attribute
last_updated_at: datetime

The timestamp when the browser was last updated.

status instance-attribute
status: BrowserStatus

The current status of the browser deletion.