interface ComponentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmplifyUIBuilder.ComponentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#ComponentReference |
Java | software.amazon.awscdk.services.amplifyuibuilder.ComponentReference |
Python | aws_cdk.aws_amplifyuibuilder.ComponentReference |
TypeScript | aws-cdk-lib » aws_amplifyuibuilder » ComponentReference |
A reference to a Component 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 amplifyuibuilder } from 'aws-cdk-lib';
const componentReference: amplifyuibuilder.ComponentReference = {
appId: 'appId',
componentId: 'componentId',
environmentName: 'environmentName',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The AppId of the Component resource. |
| component | string | The Id of the Component resource. |
| environment | string | The EnvironmentName of the Component resource. |
appId
Type:
string
The AppId of the Component resource.
componentId
Type:
string
The Id of the Component resource.
environmentName
Type:
string
The EnvironmentName of the Component resource.

.NET
Go
Java
Python
TypeScript