list_browsers¶
Operation¶
list_browsers
async
¶
list_browsers(input: ListBrowsersInput, plugins: list[Plugin] | None = None) -> ListBrowsersOutput
Lists all custom browsers in your account.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListBrowsersInput
|
An instance of |
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 |
|---|---|
ListBrowsersOutput
|
An instance of |
Input¶
ListBrowsersInput
dataclass
¶
Dataclass for ListBrowsersInput structure.
Attributes¶
max_results
class-attribute
instance-attribute
¶
max_results: int | None = None
The maximum number of results to return in a single call. The default value is 10. The maximum value is 50.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
type
class-attribute
instance-attribute
¶
type: ResourceType | None = None
The type of browsers to list. If not specified, all browser types are returned.
Output¶
ListBrowsersOutput
dataclass
¶
Dataclass for ListBrowsersOutput structure.
Attributes¶
browser_summaries
instance-attribute
¶
browser_summaries: list[BrowserSummary]
The list of browser summaries.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
A token to retrieve the next page of results.