@pulumi/pulumi
    Preparing search index...

    Interface OutputValue

    An output produced by a Pulumi program as part of a stack operation.

    interface OutputValue {
        secret: boolean;
        value: any;
    }
    Index

    Properties

    Properties

    secret: boolean

    True if and only if the value represents a secret.

    value: any

    The underlying output value.