Class ChildWorkflowExecutionStartedEventAttributes
- java.lang.Object
-
- com.amazonaws.services.simpleworkflow.model.ChildWorkflowExecutionStartedEventAttributes
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ChildWorkflowExecutionStartedEventAttributes extends Object implements Serializable, Cloneable
Provides details of the
ChildWorkflowExecutionStartedevent.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ChildWorkflowExecutionStartedEventAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChildWorkflowExecutionStartedEventAttributesclone()booleanequals(Object obj)LonggetInitiatedEventId()The ID of theStartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutiondecision to start this child workflow execution.WorkflowExecutiongetWorkflowExecution()The child workflow execution that was started.WorkflowTypegetWorkflowType()The type of the child workflow execution.inthashCode()voidsetInitiatedEventId(Long initiatedEventId)The ID of theStartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutiondecision to start this child workflow execution.voidsetWorkflowExecution(WorkflowExecution workflowExecution)The child workflow execution that was started.voidsetWorkflowType(WorkflowType workflowType)The type of the child workflow execution.StringtoString()Returns a string representation of this object; useful for testing and debugging.ChildWorkflowExecutionStartedEventAttributeswithInitiatedEventId(Long initiatedEventId)The ID of theStartChildWorkflowExecutionInitiatedevent corresponding to theStartChildWorkflowExecutiondecision to start this child workflow execution.ChildWorkflowExecutionStartedEventAttributeswithWorkflowExecution(WorkflowExecution workflowExecution)The child workflow execution that was started.ChildWorkflowExecutionStartedEventAttributeswithWorkflowType(WorkflowType workflowType)The type of the child workflow execution.
-
-
-
Method Detail
-
setWorkflowExecution
public void setWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
- Parameters:
workflowExecution- The child workflow execution that was started.
-
getWorkflowExecution
public WorkflowExecution getWorkflowExecution()
The child workflow execution that was started.
- Returns:
- The child workflow execution that was started.
-
withWorkflowExecution
public ChildWorkflowExecutionStartedEventAttributes withWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
- Parameters:
workflowExecution- The child workflow execution that was started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setWorkflowType
public void setWorkflowType(WorkflowType workflowType)
The type of the child workflow execution.
- Parameters:
workflowType- The type of the child workflow execution.
-
getWorkflowType
public WorkflowType getWorkflowType()
The type of the child workflow execution.
- Returns:
- The type of the child workflow execution.
-
withWorkflowType
public ChildWorkflowExecutionStartedEventAttributes withWorkflowType(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.
-
setInitiatedEventId
public void setInitiatedEventId(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.
-
getInitiatedEventId
public Long getInitiatedEventId()
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.- Returns:
- 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.
-
withInitiatedEventId
public ChildWorkflowExecutionStartedEventAttributes withInitiatedEventId(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.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ChildWorkflowExecutionStartedEventAttributes clone()
-
-