Amazon QuickSight CLI to schedule hourly ingestion

0

Is there a way in Amazon QuickSight to schedule hourly data set refresh via AWS CLI?

AWS
エキスパート
Vadim
質問済み 4年前859ビュー
1回答
0
承認された回答

Apart from the SPICE scheduled refresh from UI, you can use the create-ingestion CLI to perform manual refresh

Get the dataset id using list-data-sets API

aws quicksight list-data-sets --aws-account-id 1231 --region us-east-1

Create a ingestion to SPICE on-demand and use unique ingestion id every time you run this command:

aws quicksight create-ingestion --data-set-id abc1213131 --ingestion-id xyzab111 --aws-account-id 1231 --region us-east-1

Retrieve status:

aws quicksight describe-ingestion --data-set-id abc1213131 --ingestion-id xyzab111 --aws-account-id 1231 --region us-east-1

Note you can only run create-ingestion 24 times a day.

AWS
エキスパート
Gokul
回答済み 4年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ