Interface TriggerFunctionProps

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

@Generated(value="jsii-pacmak/1.109.0 (build c221850)", date="2025-03-13T18:55:13.188Z") @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();