AnalysisReference

class aws_cdk.aws_quicksight.AnalysisReference(*, analysis_arn, analysis_id, aws_account_id)

Bases: object

A reference to a Analysis resource.

Parameters:
  • analysis_arn (str) – The ARN of the Analysis resource.

  • analysis_id (str) – The AnalysisId of the Analysis resource.

  • aws_account_id (str) – The AwsAccountId of the Analysis 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

analysis_reference = quicksight.AnalysisReference(
    analysis_arn="analysisArn",
    analysis_id="analysisId",
    aws_account_id="awsAccountId"
)

Attributes

analysis_arn

The ARN of the Analysis resource.

analysis_id

The AnalysisId of the Analysis resource.

aws_account_id

The AwsAccountId of the Analysis resource.