interface ComponentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AmplifyUIBuilder.ComponentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamplifyuibuilder#ComponentReference |
Java | software.amazon.awscdk.interfaces.amplifyuibuilder.ComponentReference |
Python | aws_cdk.interfaces.aws_amplifyuibuilder.ComponentReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_amplifyuibuilder } from 'aws-cdk-lib/interfaces';
const componentReference: interfaces_aws_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