interface CfnFolderProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnFolderProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnFolderProps |
![]() | software.amazon.awscdk.services.quicksight.CfnFolderProps |
![]() | aws_cdk.aws_quicksight.CfnFolderProps |
![]() | aws-cdk-lib » aws_quicksight » CfnFolderProps |
Properties for defining a CfnFolder
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-folder.html
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 cfnFolderProps: quicksight.CfnFolderProps = {
awsAccountId: 'awsAccountId',
folderId: 'folderId',
folderType: 'folderType',
name: 'name',
parentFolderArn: 'parentFolderArn',
permissions: [{
actions: ['actions'],
principal: 'principal',
}],
sharingModel: 'sharingModel',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
aws | string | The ID for the AWS account where you want to create the folder. |
folder | string | The ID of the folder. |
folder | string | The type of folder it is. |
name? | string | A display name for the folder. |
parent | string | The Amazon Resource Name (ARN) for the folder. |
permissions? | IResolvable | IResolvable | Resource [] | A structure that describes the principals and the resource-level permissions of a folder. |
sharing | string | The sharing scope of the folder. |
tags? | Cfn [] | A list of tags for the folders that you want to apply overrides to. |
awsAccountId?
Type:
string
(optional)
The ID for the AWS account where you want to create the folder.
folderId?
Type:
string
(optional)
The ID of the folder.
folderType?
Type:
string
(optional)
The type of folder it is.
name?
Type:
string
(optional)
A display name for the folder.
parentFolderArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) for the folder.
permissions?
Type:
IResolvable
|
IResolvable
|
Resource
[]
(optional)
A structure that describes the principals and the resource-level permissions of a folder.
To specify no permissions, omit Permissions
.
sharingModel?
Type:
string
(optional)
The sharing scope of the folder.
tags?
Type:
Cfn
[]
(optional)
A list of tags for the folders that you want to apply overrides to.