FolderReference

class aws_cdk.aws_quicksight.FolderReference(*, aws_account_id, folder_arn, folder_id)

Bases: object

A 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 import aws_quicksight as quicksight

folder_reference = 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.