ComponentReference
- class aws_cdk.interfaces.aws_amplifyuibuilder.ComponentReference(*, app_id, component_id, environment_name)
Bases:
objectA 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.interfaces import aws_amplifyuibuilder as interfaces_aws_amplifyuibuilder component_reference = interfaces_aws_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.