Interface LambdaInvokeActionProps

All Superinterfaces:
CommonActionProps, CommonAwsActionProps, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LambdaInvokeActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:55.274Z") @Stability(Stable) public interface LambdaInvokeActionProps extends software.amazon.jsii.JsiiSerializable, CommonAwsActionProps
Construction properties of the LambdaInvokeAction Lambda invoke CodePipeline Action.

Example:

 Function fn;
 Pipeline pipeline = new Pipeline(this, "MyPipeline");
 LambdaInvokeAction lambdaAction = LambdaInvokeAction.Builder.create()
         .actionName("Lambda")
         .lambda(fn)
         .build();
 pipeline.addStage(StageOptions.builder()
         .stageName("Lambda")
         .actions(List.of(lambdaAction))
         .build());