interface FolderReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.FolderReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#FolderReference |
Java | software.amazon.awscdk.interfaces.quicksight.FolderReference |
Python | aws_cdk.interfaces.aws_quicksight.FolderReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » FolderReference |
A reference to a Folder 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 interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const folderReference: interfaces_aws_quicksight.FolderReference = {
awsAccountId: 'awsAccountId',
folderArn: 'folderArn',
folderId: 'folderId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the Folder resource. |
| folder | string | The ARN of the Folder resource. |
| folder | string | The FolderId of the Folder resource. |
awsAccountId
Type:
string
The AwsAccountId of the Folder resource.
folderArn
Type:
string
The ARN of the Folder resource.
folderId
Type:
string
The FolderId of the Folder resource.

.NET
Go
Java
Python
TypeScript