interface ResourcePermissionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnFolderPropsMixin.ResourcePermissionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnFolderPropsMixin_ResourcePermissionProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnFolderPropsMixin.ResourcePermissionProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnFolderPropsMixin.ResourcePermissionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnFolderPropsMixin » ResourcePermissionProperty |
<p>Permission for the resource.
.Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const resourcePermissionProperty: quicksight_mixins.CfnFolderPropsMixin.ResourcePermissionProperty = {
actions: ['actions'],
principal: 'principal',
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | The IAM action to grant or revoke permissions on. . |
| principal? | string | The Amazon Resource Name (ARN) of the principal. |
actions?
Type:
string[]
(optional)
<p>The IAM action to grant or revoke permissions on.
.principal?
Type:
string
(optional)
<p>The Amazon Resource Name (ARN) of the principal.
This can be one of the following:
<ul> <li> <p>The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) <li> <p>The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) <li> <p>The ARN of an Amazon Web Services account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across Amazon Web Services accounts. (This is less common.)
.NET
Go
Java
Python
TypeScript