ThemeReference

class aws_cdk.aws_quicksight.ThemeReference(*, aws_account_id, theme_arn, theme_id)

Bases: object

A reference to a Theme resource.

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

  • theme_arn (str) – The ARN of the Theme resource.

  • theme_id (str) – The ThemeId of the Theme 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

theme_reference = quicksight.ThemeReference(
    aws_account_id="awsAccountId",
    theme_arn="themeArn",
    theme_id="themeId"
)

Attributes

aws_account_id

The AwsAccountId of the Theme resource.

theme_arn

The ARN of the Theme resource.

theme_id

The ThemeId of the Theme resource.