interface LayerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpsWorks.LayerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#LayerReference |
Java | software.amazon.awscdk.services.opsworks.LayerReference |
Python | aws_cdk.aws_opsworks.LayerReference |
TypeScript | aws-cdk-lib » aws_opsworks » LayerReference |
A reference to a Layer 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 opsworks } from 'aws-cdk-lib';
const layerReference: opsworks.LayerReference = {
layerId: 'layerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| layer | string | The Id of the Layer resource. |
layerId
Type:
string
The Id of the Layer resource.

.NET
Go
Java
Python
TypeScript