Describe Analysis Permissions
quicksight_describe_analysis_permissions | R Documentation |
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 Amazon Web Services account that contains the analysis whose permissions you're describing. You must be using the Amazon Web Services 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"
)