interface ResourcePermissionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnSpacePropsMixin.ResourcePermissionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnSpacePropsMixin_ResourcePermissionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnSpacePropsMixin.ResourcePermissionProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnSpacePropsMixin.ResourcePermissionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnSpacePropsMixin » 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/cfn-property-mixins';
const resourcePermissionProperty: quicksight.CfnSpacePropsMixin.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[]
(optional)
The list of actions granted to the principal.
principal?
Type:
string
(optional)
The ARN of the principal (user or group) receiving the permission.

.NET
Go
Java
Python
TypeScript