DataSetReference

class aws_cdk.aws_quicksight.DataSetReference(*, aws_account_id, data_set_arn, data_set_id)

Bases: object

A reference to a DataSet resource.

Parameters:
  • aws_account_id (str) – The AwsAccountId of the DataSet resource.

  • data_set_arn (str) – The ARN of the DataSet resource.

  • data_set_id (str) – The DataSetId of the DataSet 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

data_set_reference = quicksight.DataSetReference(
    aws_account_id="awsAccountId",
    data_set_arn="dataSetArn",
    data_set_id="dataSetId"
)

Attributes

aws_account_id

The AwsAccountId of the DataSet resource.

data_set_arn

The ARN of the DataSet resource.

data_set_id

The DataSetId of the DataSet resource.