IResource
-
Extends: IConstruct
Interface for the Resource construct.
Properties
| Name | Type | Description |
|---|---|---|
node | ConstructNode | The construct tree node for this construct. |
env | IResourceEnvironment | The environment this resource belongs to. |
stack | Stack | The stack in which this resource is defined. |
nodeRequired
node: ConstructNode
- Type: ConstructNode
The construct tree node for this construct.
envRequired
env: IResourceEnvironment
- Type: IResourceEnvironment
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
stackRequired
stack: Stack
- Type: Stack
The stack in which this resource is defined.