Interface ChainedInvokeStartedDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChainedInvokeStartedDetails.Builder,ChainedInvokeStartedDetails>,SdkBuilder<ChainedInvokeStartedDetails.Builder,ChainedInvokeStartedDetails>,SdkPojo
- Enclosing class:
- ChainedInvokeStartedDetails
@Mutable @NotThreadSafe public static interface ChainedInvokeStartedDetails.Builder extends SdkPojo, CopyableBuilder<ChainedInvokeStartedDetails.Builder,ChainedInvokeStartedDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ChainedInvokeStartedDetails.BuilderdurableExecutionArn(String durableExecutionArn)The Amazon Resource Name (ARN) that identifies the durable execution.ChainedInvokeStartedDetails.BuilderexecutedVersion(String executedVersion)The version of the function that was executed.ChainedInvokeStartedDetails.BuilderfunctionName(String functionName)The name or ARN of the Lambda function being invoked.default ChainedInvokeStartedDetails.Builderinput(Consumer<EventInput.Builder> input)The JSON input payload provided to the chained invocation.ChainedInvokeStartedDetails.Builderinput(EventInput input)The JSON input payload provided to the chained invocation.ChainedInvokeStartedDetails.BuildertenantId(String tenantId)The tenant identifier for the chained invocation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
functionName
ChainedInvokeStartedDetails.Builder functionName(String functionName)
The name or ARN of the Lambda function being invoked.
- Parameters:
functionName- The name or ARN of the Lambda function being invoked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenantId
ChainedInvokeStartedDetails.Builder tenantId(String tenantId)
The tenant identifier for the chained invocation.
- Parameters:
tenantId- The tenant identifier for the chained invocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
ChainedInvokeStartedDetails.Builder input(EventInput input)
The JSON input payload provided to the chained invocation.
- Parameters:
input- The JSON input payload provided to the chained invocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
default ChainedInvokeStartedDetails.Builder input(Consumer<EventInput.Builder> input)
The JSON input payload provided to the chained invocation.
This is a convenience method that creates an instance of theEventInput.Builderavoiding the need to create one manually viaEventInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinput(EventInput).- Parameters:
input- a consumer that will call methods onEventInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
input(EventInput)
-
executedVersion
ChainedInvokeStartedDetails.Builder executedVersion(String executedVersion)
The version of the function that was executed.
- Parameters:
executedVersion- The version of the function that was executed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
durableExecutionArn
ChainedInvokeStartedDetails.Builder durableExecutionArn(String durableExecutionArn)
The Amazon Resource Name (ARN) that identifies the durable execution.
- Parameters:
durableExecutionArn- The Amazon Resource Name (ARN) that identifies the durable execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-