Class LambdaInvokeProps.Builder
java.lang.Object
software.amazon.awscdk.services.stepfunctions.tasks.LambdaInvokeProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<LambdaInvokeProps>
- Enclosing interface:
LambdaInvokeProps
@Stability(Stable)
public static final class LambdaInvokeProps.Builder
extends Object
implements software.amazon.jsii.Builder<LambdaInvokeProps>
A builder for
LambdaInvokeProps
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds the configured instance.clientContext
(String clientContext) Sets the value ofLambdaInvokeProps.getClientContext()
Sets the value ofTaskStateBaseProps.getComment()
credentials
(Credentials credentials) Sets the value ofTaskStateBaseProps.getCredentials()
Deprecated.use `heartbeatTimeout`heartbeatTimeout
(Timeout heartbeatTimeout) Sets the value ofTaskStateBaseProps.getHeartbeatTimeout()
Sets the value ofTaskStateBaseProps.getInputPath()
integrationPattern
(IntegrationPattern integrationPattern) Sets the value ofTaskStateBaseProps.getIntegrationPattern()
invocationType
(LambdaInvocationType invocationType) Sets the value ofLambdaInvokeProps.getInvocationType()
lambdaFunction
(IFunction lambdaFunction) Sets the value ofLambdaInvokeProps.getLambdaFunction()
outputPath
(String outputPath) Sets the value ofTaskStateBaseProps.getOutputPath()
Sets the value ofLambdaInvokeProps.getPayload()
payloadResponseOnly
(Boolean payloadResponseOnly) Sets the value ofLambdaInvokeProps.getPayloadResponseOnly()
Deprecated.pass a Version or Alias object as lambdaFunction insteadresultPath
(String resultPath) Sets the value ofTaskStateBaseProps.getResultPath()
resultSelector
(Map<String, ? extends Object> resultSelector) Sets the value ofTaskStateBaseProps.getResultSelector()
retryOnServiceExceptions
(Boolean retryOnServiceExceptions) Sets the value ofLambdaInvokeProps.getRetryOnServiceExceptions()
Sets the value ofTaskStateBaseProps.getStateName()
taskTimeout
(Timeout taskTimeout) Sets the value ofTaskStateBaseProps.getTaskTimeout()
Deprecated.use `taskTimeout`
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
lambdaFunction
Sets the value ofLambdaInvokeProps.getLambdaFunction()
- Parameters:
lambdaFunction
- Lambda function to invoke. This parameter is required.- Returns:
this
-
clientContext
Sets the value ofLambdaInvokeProps.getClientContext()
- Parameters:
clientContext
- Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function.- Returns:
this
-
invocationType
@Stability(Stable) public LambdaInvokeProps.Builder invocationType(LambdaInvocationType invocationType) Sets the value ofLambdaInvokeProps.getInvocationType()
- Parameters:
invocationType
- Invocation type of the Lambda function.- Returns:
this
-
payload
Sets the value ofLambdaInvokeProps.getPayload()
- Parameters:
payload
- The JSON that will be supplied as input to the Lambda function.- Returns:
this
-
payloadResponseOnly
@Stability(Stable) public LambdaInvokeProps.Builder payloadResponseOnly(Boolean payloadResponseOnly) Sets the value ofLambdaInvokeProps.getPayloadResponseOnly()
- Parameters:
payloadResponseOnly
- Invoke the Lambda in a way that only returns the payload response without additional metadata. ThepayloadResponseOnly
property cannot be used ifintegrationPattern
,invocationType
,clientContext
, orqualifier
are specified. It always uses the REQUEST_RESPONSE behavior.- Returns:
this
-
qualifier
Deprecated.pass a Version or Alias object as lambdaFunction insteadSets the value ofLambdaInvokeProps.getQualifier()
- Parameters:
qualifier
- Version or alias to invoke a published version of the function. You only need to supply this if you want the version of the Lambda Function to depend on data in the state machine state. If not, you can pass the appropriate Alias or Version object directly as thelambdaFunction
argument.- Returns:
this
-
retryOnServiceExceptions
@Stability(Stable) public LambdaInvokeProps.Builder retryOnServiceExceptions(Boolean retryOnServiceExceptions) Sets the value ofLambdaInvokeProps.getRetryOnServiceExceptions()
- Parameters:
retryOnServiceExceptions
- Whether to retry on Lambda service exceptions. This handlesLambda.ServiceException
,Lambda.AWSLambdaException
,Lambda.SdkClientException
, andLambda.ClientExecutionTimeoutException
with an interval of 2 seconds, a back-off rate of 2 and 6 maximum attempts.- Returns:
this
-
comment
Sets the value ofTaskStateBaseProps.getComment()
- Parameters:
comment
- An optional description for this state.- Returns:
this
-
credentials
Sets the value ofTaskStateBaseProps.getCredentials()
- Parameters:
credentials
- Credentials for an IAM Role that the State Machine assumes for executing the task. This enables cross-account resource invocations.- Returns:
this
-
heartbeat
Deprecated.use `heartbeatTimeout`Sets the value ofTaskStateBaseProps.getHeartbeat()
- Parameters:
heartbeat
- Timeout for the heartbeat.- Returns:
this
-
heartbeatTimeout
Sets the value ofTaskStateBaseProps.getHeartbeatTimeout()
- Parameters:
heartbeatTimeout
- Timeout for the heartbeat. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface- Returns:
this
-
inputPath
Sets the value ofTaskStateBaseProps.getInputPath()
- Parameters:
inputPath
- JSONPath expression to select part of the state to be the input to this state. May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.- Returns:
this
-
integrationPattern
@Stability(Stable) public LambdaInvokeProps.Builder integrationPattern(IntegrationPattern integrationPattern) Sets the value ofTaskStateBaseProps.getIntegrationPattern()
- Parameters:
integrationPattern
- AWS Step Functions integrates with services directly in the Amazon States Language. You can control these AWS services using service integration patterns.Depending on the AWS Service, the Service Integration Pattern availability will vary.
- Returns:
this
-
outputPath
Sets the value ofTaskStateBaseProps.getOutputPath()
- Parameters:
outputPath
- JSONPath expression to select select a portion of the state output to pass to the next state. May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.- Returns:
this
-
resultPath
Sets the value ofTaskStateBaseProps.getResultPath()
- Parameters:
resultPath
- JSONPath expression to indicate where to inject the state's output. May also be the special value JsonPath.DISCARD, which will cause the state's input to become its output.- Returns:
this
-
resultSelector
@Stability(Stable) public LambdaInvokeProps.Builder resultSelector(Map<String, ? extends Object> resultSelector) Sets the value ofTaskStateBaseProps.getResultSelector()
- Parameters:
resultSelector
- The JSON that will replace the state's raw result and become the effective result before ResultPath is applied. You can use ResultSelector to create a payload with values that are static or selected from the state's raw result.- Returns:
this
-
stateName
Sets the value ofTaskStateBaseProps.getStateName()
- Parameters:
stateName
- Optional name for this state.- Returns:
this
-
taskTimeout
Sets the value ofTaskStateBaseProps.getTaskTimeout()
- Parameters:
taskTimeout
- Timeout for the task. [disable-awslint:duration-prop-type] is needed because all props interface in aws-stepfunctions-tasks extend this interface- Returns:
this
-
timeout
Deprecated.use `taskTimeout`Sets the value ofTaskStateBaseProps.getTimeout()
- Parameters:
timeout
- Timeout for the task.- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<LambdaInvokeProps>
- Returns:
- a new instance of
LambdaInvokeProps
- Throws:
NullPointerException
- if any required attribute was not provided
-