interface ThemeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AmplifyUIBuilder.ThemeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamplifyuibuilder#ThemeReference |
Java | software.amazon.awscdk.interfaces.amplifyuibuilder.ThemeReference |
Python | aws_cdk.interfaces.aws_amplifyuibuilder.ThemeReference |
TypeScript | aws-cdk-lib » interfaces » aws_amplifyuibuilder » 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_amplifyuibuilder as interfaces_aws_amplifyuibuilder } from 'aws-cdk-lib/interfaces';
const themeReference: interfaces_aws_amplifyuibuilder.ThemeReference = {
appId: 'appId',
environmentName: 'environmentName',
themeId: 'themeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The AppId of the Theme resource. |
| environment | string | The EnvironmentName of the Theme resource. |
| theme | string | The Id of the Theme resource. |
appId
Type:
string
The AppId of the Theme resource.
environmentName
Type:
string
The EnvironmentName of the Theme resource.
themeId
Type:
string
The Id of the Theme resource.

.NET
Go
Java
Python
TypeScript