Interface SendWorkflowStepStateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<SendWorkflowStepStateRequest.Builder,SendWorkflowStepStateRequest>,SdkBuilder<SendWorkflowStepStateRequest.Builder,SendWorkflowStepStateRequest>,SdkPojo,SdkRequest.Builder,TransferRequest.Builder
- Enclosing class:
- SendWorkflowStepStateRequest
public static interface SendWorkflowStepStateRequest.Builder extends TransferRequest.Builder, SdkPojo, CopyableBuilder<SendWorkflowStepStateRequest.Builder,SendWorkflowStepStateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SendWorkflowStepStateRequest.BuilderexecutionId(String executionId)A unique identifier for the execution of a workflow.SendWorkflowStepStateRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SendWorkflowStepStateRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)SendWorkflowStepStateRequest.Builderstatus(String status)Indicates whether the specified step succeeded or failed.SendWorkflowStepStateRequest.Builderstatus(CustomStepStatus status)Indicates whether the specified step succeeded or failed.SendWorkflowStepStateRequest.Buildertoken(String token)Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.SendWorkflowStepStateRequest.BuilderworkflowId(String workflowId)A unique identifier for the workflow.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
Methods inherited from interface software.amazon.awssdk.services.transfer.model.TransferRequest.Builder
build
-
-
-
-
Method Detail
-
workflowId
SendWorkflowStepStateRequest.Builder workflowId(String workflowId)
A unique identifier for the workflow.
- Parameters:
workflowId- A unique identifier for the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionId
SendWorkflowStepStateRequest.Builder executionId(String executionId)
A unique identifier for the execution of a workflow.
- Parameters:
executionId- A unique identifier for the execution of a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
token
SendWorkflowStepStateRequest.Builder token(String token)
Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.
- Parameters:
token- Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
SendWorkflowStepStateRequest.Builder status(String status)
Indicates whether the specified step succeeded or failed.
- Parameters:
status- Indicates whether the specified step succeeded or failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomStepStatus,CustomStepStatus
-
status
SendWorkflowStepStateRequest.Builder status(CustomStepStatus status)
Indicates whether the specified step succeeded or failed.
- Parameters:
status- Indicates whether the specified step succeeded or failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CustomStepStatus,CustomStepStatus
-
overrideConfiguration
SendWorkflowStepStateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SendWorkflowStepStateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-