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 associated project name.

stackName: string

The associated stack name.

Generated using TypeDoc