public static final class LambdaInvokeActionProps.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements LambdaInvokeActionProps
LambdaInvokeActionProps
LambdaInvokeActionProps.Builder, LambdaInvokeActionProps.Jsii$Proxy
Modifier | Constructor and Description |
---|---|
protected |
Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.
|
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.databind.JsonNode |
$jsii$toJson() |
boolean |
equals(java.lang.Object o) |
java.lang.String |
getActionName()
The physical, human-readable name of the Action.
|
java.util.List<Artifact> |
getInputs()
The optional input Artifacts of the Action.
|
IFunction |
getLambda()
The lambda function to invoke.
|
java.util.List<Artifact> |
getOutputs()
The optional names of the output Artifacts of the Action.
|
IRole |
getRole()
The Role in which context's this Action will be executing in.
|
java.lang.Number |
getRunOrder()
The runOrder property for this Action.
|
java.util.Map<java.lang.String,java.lang.Object> |
getUserParameters()
A set of key-value pairs that will be accessible to the invoked Lambda inside the event that the Pipeline will call it with.
|
java.lang.String |
getUserParametersString()
The string representation of the user parameters that will be accessible to the invoked Lambda inside the event that the Pipeline will call it with.
|
java.lang.String |
getVariablesNamespace()
The name of the namespace to use for variables emitted by this action.
|
int |
hashCode() |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
builder
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
objRef
- Reference to the JSII managed object.public final IFunction getLambda()
LambdaInvokeActionProps
getLambda
in interface LambdaInvokeActionProps
public final java.util.List<Artifact> getInputs()
LambdaInvokeActionProps
A Lambda Action can have up to 5 inputs.
The inputs will appear in the event passed to the Lambda,
under the 'CodePipeline.job'.data.inputArtifacts
path.
Default: the Action will not have any inputs
public final java.util.List<Artifact> getOutputs()
LambdaInvokeActionProps
A Lambda Action can have up to 5 outputs.
The outputs will appear in the event passed to the Lambda,
under the 'CodePipeline.job'.data.outputArtifacts
path.
It is the responsibility of the Lambda to upload ZIP files with the Artifact contents to the provided locations.
Default: the Action will not have any outputs
getOutputs
in interface LambdaInvokeActionProps
public final java.util.Map<java.lang.String,java.lang.Object> getUserParameters()
LambdaInvokeActionProps
Only one of userParameters
or userParametersString
can be specified.
Default: - no user parameters will be passed
public final java.lang.String getUserParametersString()
LambdaInvokeActionProps
Only one of userParametersString
or userParameters
can be specified.
Default: - no user parameters will be passed
getUserParametersString
in interface LambdaInvokeActionProps
public final IRole getRole()
CommonAwsActionProps
The Pipeline's Role will assume this Role (the required permissions for that will be granted automatically) right before executing this Action. This Action will be passed into your {@link IAction.bind} method in the {@link ActionBindOptions.role} property.
Default: a new Role will be generated
getRole
in interface CommonAwsActionProps
public final java.lang.String getActionName()
CommonActionProps
Note that Action names must be unique within a single Stage.
getActionName
in interface CommonActionProps
public final java.lang.Number getRunOrder()
CommonActionProps
RunOrder determines the relative order in which multiple Actions in the same Stage execute.
Default: 1
getRunOrder
in interface CommonActionProps
public final java.lang.String getVariablesNamespace()
CommonActionProps
Default: - a name will be generated, based on the stage and action names, if any of the action's variables were referenced - otherwise, no namespace will be set
getVariablesNamespace
in interface CommonActionProps
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
public final boolean equals(java.lang.Object o)
public final int hashCode()