ThemeReference
- class aws_cdk.aws_amplifyuibuilder.ThemeReference(*, app_id, environment_name, theme_id)
Bases:
object
A reference to a Theme resource.
- Parameters:
app_id (
str
) – The AppId of the Theme resource.environment_name (
str
) – The EnvironmentName of the Theme resource.theme_id (
str
) – The Id 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_amplifyuibuilder as amplifyuibuilder theme_reference = amplifyuibuilder.ThemeReference( app_id="appId", environment_name="environmentName", theme_id="themeId" )
Attributes
- app_id
The AppId of the Theme resource.
- environment_name
The EnvironmentName of the Theme resource.
- theme_id
The Id of the Theme resource.