Learn R Programming

paws.analytics (version 0.1.11)

quicksight_describe_analysis_permissions: Provides the read and write permissions for an analysis

Description

Provides the read and write permissions for an analysis.

Usage

quicksight_describe_analysis_permissions(AwsAccountId, AnalysisId)

Arguments

AwsAccountId

[required] The ID of the AWS account that contains the analysis whose permissions you're describing. You must be using the AWS account that the analysis is in.

AnalysisId

[required] The ID of the analysis whose permissions you're describing. The ID is part of the analysis URL.

Value

A list with the following syntax:

list(
  AnalysisId = "string",
  AnalysisArn = "string",
  Permissions = list(
    list(
      Principal = "string",
      Actions = list(
        "string"
      )
    )
  ),
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$describe_analysis_permissions(
  AwsAccountId = "string",
  AnalysisId = "string"
)