interface ThemeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.ThemeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#ThemeReference |
Java | software.amazon.awscdk.interfaces.quicksight.ThemeReference |
Python | aws_cdk.interfaces.aws_quicksight.ThemeReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » ThemeReference |
A reference to a Theme resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const themeReference: interfaces_aws_quicksight.ThemeReference = {
awsAccountId: 'awsAccountId',
themeArn: 'themeArn',
themeId: 'themeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the Theme resource. |
| theme | string | The ARN of the Theme resource. |
| theme | string | The ThemeId of the Theme resource. |
awsAccountId
Type:
string
The AwsAccountId of the Theme resource.
themeArn
Type:
string
The ARN of the Theme resource.
themeId
Type:
string
The ThemeId of the Theme resource.

.NET
Go
Java
Python
TypeScript