Skip to content

IResource

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

public ConstructNode Node { get; }

The construct tree node for this construct.


EnvRequired

public IResourceEnvironment Env { get; }

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

public Stack Stack { get; }

The stack in which this resource is defined.