Interface ChildWorkflowExecutionFailedEventAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ChildWorkflowExecutionFailedEventAttributes.Builder,ChildWorkflowExecutionFailedEventAttributes>,SdkBuilder<ChildWorkflowExecutionFailedEventAttributes.Builder,ChildWorkflowExecutionFailedEventAttributes>,SdkPojo
- Enclosing class:
- ChildWorkflowExecutionFailedEventAttributes
@Mutable @NotThreadSafe public static interface ChildWorkflowExecutionFailedEventAttributes.Builder extends SdkPojo, CopyableBuilder<ChildWorkflowExecutionFailedEventAttributes.Builder,ChildWorkflowExecutionFailedEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ChildWorkflowExecutionFailedEventAttributes.Builderdetails(String details)The details of the failure (if provided).ChildWorkflowExecutionFailedEventAttributes.BuilderinitiatedEventId(Long initiatedEventId)The ID of theStartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutionDecision to start this child workflow execution.ChildWorkflowExecutionFailedEventAttributes.Builderreason(String reason)The reason for the failure (if provided).ChildWorkflowExecutionFailedEventAttributes.BuilderstartedEventId(Long startedEventId)The ID of theChildWorkflowExecutionStartedevent recorded when this child workflow execution was started.default ChildWorkflowExecutionFailedEventAttributes.BuilderworkflowExecution(Consumer<WorkflowExecution.Builder> workflowExecution)The child workflow execution that failed.ChildWorkflowExecutionFailedEventAttributes.BuilderworkflowExecution(WorkflowExecution workflowExecution)The child workflow execution that failed.default ChildWorkflowExecutionFailedEventAttributes.BuilderworkflowType(Consumer<WorkflowType.Builder> workflowType)The type of the child workflow execution.ChildWorkflowExecutionFailedEventAttributes.BuilderworkflowType(WorkflowType workflowType)The type of the child workflow execution.-
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
-
workflowExecution
ChildWorkflowExecutionFailedEventAttributes.Builder workflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that failed.
- Parameters:
workflowExecution- The child workflow execution that failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowExecution
default ChildWorkflowExecutionFailedEventAttributes.Builder workflowExecution(Consumer<WorkflowExecution.Builder> workflowExecution)
The child workflow execution that failed.
This is a convenience method that creates an instance of theWorkflowExecution.Builderavoiding the need to create one manually viaWorkflowExecution.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toworkflowExecution(WorkflowExecution).- Parameters:
workflowExecution- a consumer that will call methods onWorkflowExecution.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
workflowExecution(WorkflowExecution)
-
workflowType
ChildWorkflowExecutionFailedEventAttributes.Builder workflowType(WorkflowType workflowType)
The type of the child workflow execution.
- Parameters:
workflowType- The type of the child workflow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowType
default ChildWorkflowExecutionFailedEventAttributes.Builder workflowType(Consumer<WorkflowType.Builder> workflowType)
The type of the child workflow execution.
This is a convenience method that creates an instance of theWorkflowType.Builderavoiding the need to create one manually viaWorkflowType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toworkflowType(WorkflowType).- Parameters:
workflowType- a consumer that will call methods onWorkflowType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
workflowType(WorkflowType)
-
reason
ChildWorkflowExecutionFailedEventAttributes.Builder reason(String reason)
The reason for the failure (if provided).
- Parameters:
reason- The reason for the failure (if provided).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
details
ChildWorkflowExecutionFailedEventAttributes.Builder details(String details)
The details of the failure (if provided).
- Parameters:
details- The details of the failure (if provided).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
initiatedEventId
ChildWorkflowExecutionFailedEventAttributes.Builder initiatedEventId(Long initiatedEventId)
The ID of the
StartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutionDecision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
initiatedEventId- The ID of theStartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutionDecision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedEventId
ChildWorkflowExecutionFailedEventAttributes.Builder startedEventId(Long startedEventId)
The ID of the
ChildWorkflowExecutionStartedevent recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
startedEventId- The ID of theChildWorkflowExecutionStartedevent recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-