Forrest logo
back to the aws tool

aws-quicksight:tldr:5db2e

aws-quicksight: 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}
try on your machine

The command "aws quicksight describe-data-set-permissions" is used to retrieve the permissions of a dataset in Amazon QuickSight.

Here's a breakdown of the command and its parameters:

  • aws quicksight describe-data-set-permissions: This is the main command to describe the permissions of a dataset.
  • --aws-account-id: This parameter is used to specify the AWS account ID of the owner of the dataset. You can provide the value by using the ${aws_account_id} variable, which should be replaced with the actual AWS account ID.
  • --data-set-id: This parameter is used to specify the unique identifier of the dataset. Similarly, you need to provide the value by using the ${data_set_id} variable, which should be replaced with the actual dataset ID.

By running this command with the appropriate AWS account ID and dataset ID, you will receive the details of the permissions associated with the specified dataset.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the aws tool