awswrangler.quicksight.delete_dashboard¶
- awswrangler.quicksight.delete_dashboard(name: str | None = None, dashboard_id: str | None = None, version_number: int | None = None, account_id: str | None = None, boto3_session: Session | None = None) None¶
Delete a dashboard.
Note
You must pass a not None
nameordashboard_idargument.- Parameters:
name (
str|None) – Dashboard name.dashboard_id (
str|None) – The ID for the dashboard.version_number (
int|None) – The version number of the dashboard. If the version number property is provided, only the specified version of the dashboard is deleted.account_id (
str|None) – If None, the account ID will be inferred from your boto3 session.boto3_session (
Session|None) – The default boto3 session will be used if boto3_session isNone.
- Return type:
None
Examples
>>> import awswrangler as wr >>> wr.quicksight.delete_dashboard(name="...")