Learn R Programming

paws.analytics (version 0.1.11)

quicksight_list_data_sets: Lists all of the datasets belonging to the current AWS account in an AWS Region

Description

Lists all of the datasets belonging to the current AWS account in an AWS Region.

The permissions resource is arn:aws:quicksight:region:aws-account-id:dataset/*.

Usage

quicksight_list_data_sets(AwsAccountId, NextToken, MaxResults)

Arguments

AwsAccountId

[required] The AWS account ID.

NextToken

The token for the next set of results, or null if there are no more results.

MaxResults

The maximum number of results to be returned per request.

Value

A list with the following syntax:

list(
  DataSetSummaries = list(
    list(
      Arn = "string",
      DataSetId = "string",
      Name = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      ImportMode = "SPICE"|"DIRECT_QUERY",
      RowLevelPermissionDataSet = list(
        Namespace = "string",
        Arn = "string",
        PermissionPolicy = "GRANT_ACCESS"|"DENY_ACCESS"
      ),
      ColumnLevelPermissionRulesApplied = TRUE|FALSE
    )
  ),
  NextToken = "string",
  RequestId = "string",
  Status = 123
)

Request syntax

svc$list_data_sets(
  AwsAccountId = "string",
  NextToken = "string",
  MaxResults = 123
)