Description of a stack backed by an inline (in process) Pulumi program.

interface InlineProgramArgs {
    program: PulumiFn;
    projectName: string;
    stackName: string;
}

Properties

program: PulumiFn

The inline (in process) Pulumi program to use with Update and Preview operations.

projectName: string

The name of the associated project

stackName: string

The name of the associated Stack

Generated using TypeDoc