Interface LambdaInvokeActionProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:04.548Z") @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());