awswrangler.quicksight.list_ingestions

awswrangler.quicksight.list_ingestions(dataset_name: Optional[str] = None, dataset_id: Optional[str] = None, account_id: Optional[str] = None, boto3_session: Optional[Session] = None) List[Dict[str, Any]]

List the history of SPICE ingestions for a dataset.

Parameters
  • dataset_name (str, optional) – Dataset name.

  • dataset_id (str, optional) – The ID of the dataset used in the ingestion.

  • 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

IAM policy assignments.

Return type

List[Dict[str, Any]]

Examples

>>> import awswrangler as wr
>>> ingestions = wr.quicksight.list_ingestions()