where are the docs for lamda.CallbackFunction ? U...
# aws
g
where are the docs for lamda.CallbackFunction ? Using it like this.
Copy code
import {lambda} from "@pulumi/aws";
...
new lambda.CallbackFunction...
but at the aws lambda docs page there's no "CallbackFunction" defined
n
looking at the code, looks like these are the arguments, idk if this helps or not…
Copy code
export declare class CallbackFunction<E, R> extends LambdaFunction {
    constructor(name: string, args: CallbackFunctionArgs<E, R>, opts?: pulumi.CustomResourceOptions);
}
g
Yea i ended up finding what i needed just kind of confused why there's no docs 🙃 thanks though!
n
yeah, i’ve mentioned this before also. the lack of examples is annoying….