awswrangler.quicksight.delete_dataset

awswrangler.quicksight.delete_dataset(name: Optional[str] = None, dataset_id: Optional[str] = None, account_id: Optional[str] = None, boto3_session: Optional[Session] = None) None

Delete a dataset.

Note

You must pass a not None name or dataset_id argument.

Parameters
  • name (str, optional) – Dashboard name.

  • dataset_id (str, optional) – The ID for the dataset.

  • account_id (str, optional) – If None, the account ID will be inferred from your boto3 session.

  • boto3_session (boto3.Session(), optional) – Boto3 Session. The default boto3 session will be used if boto3_session receive None.

Returns

None.

Return type

None

Examples

>>> import awswrangler as wr
>>> wr.quicksight.delete_dataset(name="...")