Class LambdaInvokeAction
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codepipeline.Action
software.amazon.awscdk.services.codepipeline.actions.Action
software.amazon.awscdk.services.codepipeline.actions.LambdaInvokeAction
- All Implemented Interfaces:
- IAction,- software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:48.458Z")
@Stability(Stable)
public class LambdaInvokeAction
extends Action
CodePipeline invoke Action that is provided by an AWS Lambda function.
 
Example:
 Function fn;
 Artifact sourceOutput = new Artifact();
 Artifact buildOutput = new Artifact();
 LambdaInvokeAction lambdaAction = LambdaInvokeAction.Builder.create()
         .actionName("Lambda")
         .inputs(List.of(sourceOutput, buildOutput))
         .outputs(List.of(
             new Artifact("Out1"),
             new Artifact("Out2")))
         .lambda(fn)
         .build();
 - 
Nested Class SummaryNested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.codepipeline.IActionIAction.Jsii$Default
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedLambdaInvokeAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedLambdaInvokeAction(software.amazon.jsii.JsiiObjectRef objRef) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected ActionConfigbound(Construct scope, IStage _stage, ActionBindOptions options) This is a renamed version of theIAction.bindmethod.Reference a CodePipeline variable defined by the Lambda function this action points to.Methods inherited from class software.amazon.awscdk.services.codepipeline.actions.ActiongetProvidedActionPropertiesMethods inherited from class software.amazon.awscdk.services.codepipeline.Actionbind, getActionProperties, onStateChange, onStateChange, onStateChange, variableExpressionMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
LambdaInvokeActionprotected LambdaInvokeAction(software.amazon.jsii.JsiiObjectRef objRef) 
- 
LambdaInvokeActionprotected LambdaInvokeAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
LambdaInvokeAction- Parameters:
- props- This parameter is required.
 
 
- 
- 
Method Details- 
bound@Stability(Stable) @NotNull protected ActionConfig bound(@NotNull Construct scope, @NotNull IStage _stage, @NotNull ActionBindOptions options) This is a renamed version of theIAction.bindmethod.
- 
variableReference a CodePipeline variable defined by the Lambda function this action points to.Variables in Lambda invoke actions are defined by calling the PutJobSuccessResult CodePipeline API call with the 'outputVariables' property filled. - Parameters:
- variableName- the name of the variable to reference. This parameter is required.
- See Also:
 
 
-