@pulumi/pulumi
    Preparing search index...

    Interface SerializedFunction

    SerializedFunction is a representation of a serialized JavaScript function.

    interface SerializedFunction {
        containsSecrets: boolean;
        exportName: string;
        text: string;
    }
    Index

    Properties

    containsSecrets: boolean

    True if the serialized function text includes serialized secrets.

    exportName: string

    The name of the exported module member.

    text: string

    The text of a JavaScript module which exports a single name bound to an appropriate value. In the case of a normal function, this value will just be serialized function. In the case of a factory function this value will be the result of invoking the factory function.