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

    Interface ResolveContext

    Context passed to IResolvable.resolve(). Carries the provider identifier and the ability to recursively resolve nested values.

    interface ResolveContext {
        provider: string;
        resolve(value: unknown): unknown;
    }
    Index

    Properties

    Methods

    Properties

    provider: string

    The identifier of the provider being synthesized (e.g. 'kubernetes', 'hetzner').

    Methods