@pulumi/pulumi - v3.251.0
    Preparing search index...

    Interface OutputConstructor

    Static side of the Output type. Can be used to create outputs as well as test arbitrary values to see if they are Outputs.

    interface OutputConstructor {
        create<T>(val: Input<T>): Output<Unwrap<T>>;
        create<T>(val: Input<T> | undefined): Output<Unwrap<T> | undefined>;
        isInstance<T>(obj: any): obj is Output<T>;
    }
    Index

    Methods