pub struct Builder { /* private fields */ }
Expand description
A builder for ChildWorkflowExecutionStartedEventAttributes
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn workflow_execution(self, input: WorkflowExecution) -> Self
pub fn workflow_execution(self, input: WorkflowExecution) -> Self
The child workflow execution that was started.
sourcepub fn set_workflow_execution(self, input: Option<WorkflowExecution>) -> Self
pub fn set_workflow_execution(self, input: Option<WorkflowExecution>) -> Self
The child workflow execution that was started.
sourcepub fn workflow_type(self, input: WorkflowType) -> Self
pub fn workflow_type(self, input: WorkflowType) -> Self
The type of the child workflow execution.
sourcepub fn set_workflow_type(self, input: Option<WorkflowType>) -> Self
pub fn set_workflow_type(self, input: Option<WorkflowType>) -> Self
The type of the child workflow execution.
sourcepub fn initiated_event_id(self, input: i64) -> Self
pub fn initiated_event_id(self, input: i64) -> Self
The ID of the StartChildWorkflowExecutionInitiated
event corresponding to the StartChildWorkflowExecution
Decision
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.
sourcepub fn set_initiated_event_id(self, input: Option<i64>) -> Self
pub fn set_initiated_event_id(self, input: Option<i64>) -> Self
The ID of the StartChildWorkflowExecutionInitiated
event corresponding to the StartChildWorkflowExecution
Decision
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.
sourcepub fn build(self) -> ChildWorkflowExecutionStartedEventAttributes
pub fn build(self) -> ChildWorkflowExecutionStartedEventAttributes
Consumes the builder and constructs a ChildWorkflowExecutionStartedEventAttributes
.