Interface AttiniLambdaInvokeProps

interface AttiniLambdaInvokeProps {
    clientContext?: string;
    functionName: string;
    invocationType?: LambdaInvocationType;
    payload?: object;
    qualifier?: string;
}

Properties

clientContext?: string

Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function.

functionName: string

Lambda function to invoke.

invocationType?: LambdaInvocationType

Invocation type of the Lambda function.

payload?: object

The JSON that will be supplied as input to the Lambda function.

If not specified then the entire payload will be passed.

qualifier?: string

Version or alias to invoke a published version of the function.

Generated using TypeDoc