FolderReference
- class aws_cdk.interfaces.aws_quicksight.FolderReference(*, aws_account_id, folder_arn, folder_id)
Bases:
objectA reference to a Folder resource.
- Parameters:
aws_account_id (
str) – The AwsAccountId of the Folder resource.folder_arn (
str) – The ARN of the Folder resource.folder_id (
str) – The FolderId of the Folder resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_quicksight as interfaces_aws_quicksight folder_reference = interfaces_aws_quicksight.FolderReference( aws_account_id="awsAccountId", folder_arn="folderArn", folder_id="folderId" )
Attributes
- aws_account_id
The AwsAccountId of the Folder resource.
- folder_arn
The ARN of the Folder resource.
- folder_id
The FolderId of the Folder resource.