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

    Interface StackProps

    interface StackProps {
        description?: string;
        stackName?: string;
        synthesizer?: IStackSynthesizer;
    }
    Index

    Properties

    description?: string

    An optional human-readable description for this stack.

    stackName?: string

    An optional human-readable name for this stack. Used as displayName in the manifest and overrides the default (construct id). Does not affect artifactId (which is always derived from the construct node path).

    synthesizer?: IStackSynthesizer

    The synthesizer used to produce this stack's output file. If not set, uses JsonSynthesizer.