interface AppReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.OpsWorks.AppReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsopsworks#AppReference |
Java | software.amazon.awscdk.interfaces.opsworks.AppReference |
Python | aws_cdk.interfaces.aws_opsworks.AppReference |
TypeScript | aws-cdk-lib » interfaces » aws_opsworks » AppReference |
A reference to a App resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as interfaces_opsworks } from 'aws-cdk-lib/interfaces';
const appReference: interfaces_opsworks.AppReference = {
appId: 'appId',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The Id of the App resource. |
appId
Type:
string
The Id of the App resource.

.NET
Go
Java
Python
TypeScript