interface ResourcePermissionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnSpace.ResourcePermissionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnSpace_ResourcePermissionProperty |
Java | software.amazon.awscdk.services.quicksight.CfnSpace.ResourcePermissionProperty |
Python | aws_cdk.aws_quicksight.CfnSpace.ResourcePermissionProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnSpace » ResourcePermissionProperty |
A permission granted to a principal on a QuickSight resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const resourcePermissionProperty: quicksight.CfnSpace.ResourcePermissionProperty = {
actions: ['actions'],
principal: 'principal',
};
Properties
| Name | Type | Description |
|---|---|---|
| actions | string[] | The list of actions granted to the principal. |
| principal | string | The ARN of the principal (user or group) receiving the permission. |
actions
Type:
string[]
The list of actions granted to the principal.
principal
Type:
string
The ARN of the principal (user or group) receiving the permission.

.NET
Go
Java
Python
TypeScript