Interface TriggerFunctionProps

All Superinterfaces:
EventInvokeConfigOptions, FunctionOptions, FunctionProps, software.amazon.jsii.JsiiSerializable, TriggerOptions
All Known Implementing Classes:
TriggerFunctionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-15T01:32:56.685Z") @Stability(Stable) public interface TriggerFunctionProps extends software.amazon.jsii.JsiiSerializable, FunctionProps, TriggerOptions
Props for InvokeFunction.

Example:

 import software.amazon.awscdk.triggers.*;
 TriggerFunction.Builder.create(this, "MyTrigger")
         .runtime(Runtime.NODEJS_18_X)
         .handler("index.handler")
         .code(Code.fromAsset(__dirname + "/my-trigger"))
         .build();