ComponentReference
- class aws_cdk.aws_amplifyuibuilder.ComponentReference(*, app_id, component_id, environment_name)
Bases:
object
A reference to a Component resource.
- Parameters:
app_id (
str
) – The AppId of the Component resource.component_id (
str
) – The Id of the Component resource.environment_name (
str
) – The EnvironmentName of the Component 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 component_reference = amplifyuibuilder.ComponentReference( app_id="appId", component_id="componentId", environment_name="environmentName" )
Attributes
- app_id
The AppId of the Component resource.
- component_id
The Id of the Component resource.
- environment_name
The EnvironmentName of the Component resource.