@cdk-x/core
    Preparing search index...

    Interface IResource

    interface IResource {
        node: Node;
        applyRemovalPolicy(policy: RemovalPolicy): void;
        with(...mixins: IMixin[]): IConstruct;
    }

    Hierarchy

    • IConstruct
      • IResource

    Implemented by

    Index

    Properties

    Methods

    Properties

    node: Node

    The tree node.

    Methods

    • Applies one or more mixins to this construct.

      Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

      Parameters

      • ...mixins: IMixin[]

        The mixins to apply

      Returns IConstruct

      This construct for chaining