ThemeReference
- class aws_cdk.interfaces.aws_quicksight.ThemeReference(*, aws_account_id, theme_arn, theme_id)
Bases:
objectA 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.interfaces import aws_quicksight as interfaces_aws_quicksight theme_reference = interfaces_aws_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.