HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

aws quicksight — Create, delete, list, search, and update AWS QuickSight entities. More information: <https://docs.aw

Submitted by: @import:tldr-pages··
0
Viewed 0 times
createdeletecommandandsearchclilistaws quicksight

Problem

How to use the aws quicksight command: Create, delete, list, search, and update AWS QuickSight entities. More information: <https://docs.aws.amazon.com/cli/latest/reference/quicksight/>.

Solution

aws quicksight — Create, delete, list, search, and update AWS QuickSight entities. More information: <https://docs.aws.amazon.com/cli/latest/reference/quicksight/>.

List datasets:
aws quicksight list-data-sets --aws-account-id {{aws_account_id}}


List users:
aws quicksight list-users --aws-account-id {{aws_account_id}} --namespace default


List groups:
aws quicksight list-groups --aws-account-id {{aws_account_id}} --namespace default


List dashboards:
aws quicksight list-dashboards --aws-account-id {{aws_account_id}}


Display detailed information about a dataset:
aws quicksight describe-data-set --aws-account-id {{aws_account_id}} --data-set-id {{data_set_id}}


Display who has access to the dataset and what kind of actions they can perform on the dataset:
aws quicksight describe-data-set-permissions --aws-account-id {{aws_account_id}} --data-set-id {{data_set_id}}

Code Snippets

List datasets

aws quicksight list-data-sets --aws-account-id {{aws_account_id}}

List users

aws quicksight list-users --aws-account-id {{aws_account_id}} --namespace default

List groups

aws quicksight list-groups --aws-account-id {{aws_account_id}} --namespace default

List dashboards

aws quicksight list-dashboards --aws-account-id {{aws_account_id}}

Display detailed information about a dataset

aws quicksight describe-data-set --aws-account-id {{aws_account_id}} --data-set-id {{data_set_id}}

Context

tldr-pages: common/aws quicksight

Revisions (0)

No revisions yet.