Struct aws_sdk_swf::model::HistoryEvent
source · [−]#[non_exhaustive]pub struct HistoryEvent { /* private fields */ }
Expand description
Event within a workflow execution. A history event can be one of these types:
-
ActivityTaskCancelRequested
– ARequestCancelActivityTask
decision was received by the system. -
ActivityTaskCanceled
– The activity task was successfully canceled. -
ActivityTaskCompleted
– An activity worker successfully completed an activity task by callingRespondActivityTaskCompleted
. -
ActivityTaskFailed
– An activity worker failed an activity task by callingRespondActivityTaskFailed
. -
ActivityTaskScheduled
– An activity task was scheduled for execution. -
ActivityTaskStarted
– The scheduled activity task was dispatched to a worker. -
ActivityTaskTimedOut
– The activity task timed out. -
CancelTimerFailed
– Failed to process CancelTimer decision. This happens when the decision isn't configured properly, for example no timer exists with the specified timer Id. -
CancelWorkflowExecutionFailed
– A request to cancel a workflow execution failed. -
ChildWorkflowExecutionCanceled
– A child workflow execution, started by this workflow execution, was canceled and closed. -
ChildWorkflowExecutionCompleted
– A child workflow execution, started by this workflow execution, completed successfully and was closed. -
ChildWorkflowExecutionFailed
– A child workflow execution, started by this workflow execution, failed to complete successfully and was closed. -
ChildWorkflowExecutionStarted
– A child workflow execution was successfully started. -
ChildWorkflowExecutionTerminated
– A child workflow execution, started by this workflow execution, was terminated. -
ChildWorkflowExecutionTimedOut
– A child workflow execution, started by this workflow execution, timed out and was closed. -
CompleteWorkflowExecutionFailed
– The workflow execution failed to complete. -
ContinueAsNewWorkflowExecutionFailed
– The workflow execution failed to complete after being continued as a new workflow execution. -
DecisionTaskCompleted
– The decider successfully completed a decision task by callingRespondDecisionTaskCompleted
. -
DecisionTaskScheduled
– A decision task was scheduled for the workflow execution. -
DecisionTaskStarted
– The decision task was dispatched to a decider. -
DecisionTaskTimedOut
– The decision task timed out. -
ExternalWorkflowExecutionCancelRequested
– Request to cancel an external workflow execution was successfully delivered to the target execution. -
ExternalWorkflowExecutionSignaled
– A signal, requested by this workflow execution, was successfully delivered to the target external workflow execution. -
FailWorkflowExecutionFailed
– A request to mark a workflow execution as failed, itself failed. -
MarkerRecorded
– A marker was recorded in the workflow history as the result of aRecordMarker
decision. -
RecordMarkerFailed
– ARecordMarker
decision was returned as failed. -
RequestCancelActivityTaskFailed
– Failed to process RequestCancelActivityTask decision. This happens when the decision isn't configured properly. -
RequestCancelExternalWorkflowExecutionFailed
– Request to cancel an external workflow execution failed. -
RequestCancelExternalWorkflowExecutionInitiated
– A request was made to request the cancellation of an external workflow execution. -
ScheduleActivityTaskFailed
– Failed to process ScheduleActivityTask decision. This happens when the decision isn't configured properly, for example the activity type specified isn't registered. -
SignalExternalWorkflowExecutionFailed
– The request to signal an external workflow execution failed. -
SignalExternalWorkflowExecutionInitiated
– A request to signal an external workflow was made. -
StartActivityTaskFailed
– A scheduled activity task failed to start. -
StartChildWorkflowExecutionFailed
– Failed to process StartChildWorkflowExecution decision. This happens when the decision isn't configured properly, for example the workflow type specified isn't registered. -
StartChildWorkflowExecutionInitiated
– A request was made to start a child workflow execution. -
StartTimerFailed
– Failed to process StartTimer decision. This happens when the decision isn't configured properly, for example a timer already exists with the specified timer Id. -
TimerCanceled
– A timer, previously started for this workflow execution, was successfully canceled. -
TimerFired
– A timer, previously started for this workflow execution, fired. -
TimerStarted
– A timer was started for the workflow execution due to aStartTimer
decision. -
WorkflowExecutionCancelRequested
– A request to cancel this workflow execution was made. -
WorkflowExecutionCanceled
– The workflow execution was successfully canceled and closed. -
WorkflowExecutionCompleted
– The workflow execution was closed due to successful completion. -
WorkflowExecutionContinuedAsNew
– The workflow execution was closed and a new execution of the same type was created with the same workflowId. -
WorkflowExecutionFailed
– The workflow execution closed due to a failure. -
WorkflowExecutionSignaled
– An external signal was received for the workflow execution. -
WorkflowExecutionStarted
– The workflow execution was started. -
WorkflowExecutionTerminated
– The workflow execution was terminated. -
WorkflowExecutionTimedOut
– The workflow execution was closed because a time out was exceeded.
Implementations
sourceimpl HistoryEvent
impl HistoryEvent
sourcepub fn event_timestamp(&self) -> Option<&DateTime>
pub fn event_timestamp(&self) -> Option<&DateTime>
The date and time when the event occurred.
sourcepub fn event_type(&self) -> Option<&EventType>
pub fn event_type(&self) -> Option<&EventType>
The type of the history event.
sourcepub fn event_id(&self) -> i64
pub fn event_id(&self) -> i64
The system generated ID of the event. This ID uniquely identifies the event with in the workflow execution history.
sourcepub fn workflow_execution_started_event_attributes(
&self
) -> Option<&WorkflowExecutionStartedEventAttributes>
pub fn workflow_execution_started_event_attributes(
&self
) -> Option<&WorkflowExecutionStartedEventAttributes>
If the event is of type WorkflowExecutionStarted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_completed_event_attributes(
&self
) -> Option<&WorkflowExecutionCompletedEventAttributes>
pub fn workflow_execution_completed_event_attributes(
&self
) -> Option<&WorkflowExecutionCompletedEventAttributes>
If the event is of type WorkflowExecutionCompleted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn complete_workflow_execution_failed_event_attributes(
&self
) -> Option<&CompleteWorkflowExecutionFailedEventAttributes>
pub fn complete_workflow_execution_failed_event_attributes(
&self
) -> Option<&CompleteWorkflowExecutionFailedEventAttributes>
If the event is of type CompleteWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_failed_event_attributes(
&self
) -> Option<&WorkflowExecutionFailedEventAttributes>
pub fn workflow_execution_failed_event_attributes(
&self
) -> Option<&WorkflowExecutionFailedEventAttributes>
If the event is of type WorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn fail_workflow_execution_failed_event_attributes(
&self
) -> Option<&FailWorkflowExecutionFailedEventAttributes>
pub fn fail_workflow_execution_failed_event_attributes(
&self
) -> Option<&FailWorkflowExecutionFailedEventAttributes>
If the event is of type FailWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_timed_out_event_attributes(
&self
) -> Option<&WorkflowExecutionTimedOutEventAttributes>
pub fn workflow_execution_timed_out_event_attributes(
&self
) -> Option<&WorkflowExecutionTimedOutEventAttributes>
If the event is of type WorkflowExecutionTimedOut
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_canceled_event_attributes(
&self
) -> Option<&WorkflowExecutionCanceledEventAttributes>
pub fn workflow_execution_canceled_event_attributes(
&self
) -> Option<&WorkflowExecutionCanceledEventAttributes>
If the event is of type WorkflowExecutionCanceled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn cancel_workflow_execution_failed_event_attributes(
&self
) -> Option<&CancelWorkflowExecutionFailedEventAttributes>
pub fn cancel_workflow_execution_failed_event_attributes(
&self
) -> Option<&CancelWorkflowExecutionFailedEventAttributes>
If the event is of type CancelWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_continued_as_new_event_attributes(
&self
) -> Option<&WorkflowExecutionContinuedAsNewEventAttributes>
pub fn workflow_execution_continued_as_new_event_attributes(
&self
) -> Option<&WorkflowExecutionContinuedAsNewEventAttributes>
If the event is of type WorkflowExecutionContinuedAsNew
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn continue_as_new_workflow_execution_failed_event_attributes(
&self
) -> Option<&ContinueAsNewWorkflowExecutionFailedEventAttributes>
pub fn continue_as_new_workflow_execution_failed_event_attributes(
&self
) -> Option<&ContinueAsNewWorkflowExecutionFailedEventAttributes>
If the event is of type ContinueAsNewWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_terminated_event_attributes(
&self
) -> Option<&WorkflowExecutionTerminatedEventAttributes>
pub fn workflow_execution_terminated_event_attributes(
&self
) -> Option<&WorkflowExecutionTerminatedEventAttributes>
If the event is of type WorkflowExecutionTerminated
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_cancel_requested_event_attributes(
&self
) -> Option<&WorkflowExecutionCancelRequestedEventAttributes>
pub fn workflow_execution_cancel_requested_event_attributes(
&self
) -> Option<&WorkflowExecutionCancelRequestedEventAttributes>
If the event is of type WorkflowExecutionCancelRequested
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn decision_task_scheduled_event_attributes(
&self
) -> Option<&DecisionTaskScheduledEventAttributes>
pub fn decision_task_scheduled_event_attributes(
&self
) -> Option<&DecisionTaskScheduledEventAttributes>
If the event is of type DecisionTaskScheduled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn decision_task_started_event_attributes(
&self
) -> Option<&DecisionTaskStartedEventAttributes>
pub fn decision_task_started_event_attributes(
&self
) -> Option<&DecisionTaskStartedEventAttributes>
If the event is of type DecisionTaskStarted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn decision_task_completed_event_attributes(
&self
) -> Option<&DecisionTaskCompletedEventAttributes>
pub fn decision_task_completed_event_attributes(
&self
) -> Option<&DecisionTaskCompletedEventAttributes>
If the event is of type DecisionTaskCompleted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn decision_task_timed_out_event_attributes(
&self
) -> Option<&DecisionTaskTimedOutEventAttributes>
pub fn decision_task_timed_out_event_attributes(
&self
) -> Option<&DecisionTaskTimedOutEventAttributes>
If the event is of type DecisionTaskTimedOut
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_scheduled_event_attributes(
&self
) -> Option<&ActivityTaskScheduledEventAttributes>
pub fn activity_task_scheduled_event_attributes(
&self
) -> Option<&ActivityTaskScheduledEventAttributes>
If the event is of type ActivityTaskScheduled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_started_event_attributes(
&self
) -> Option<&ActivityTaskStartedEventAttributes>
pub fn activity_task_started_event_attributes(
&self
) -> Option<&ActivityTaskStartedEventAttributes>
If the event is of type ActivityTaskStarted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_completed_event_attributes(
&self
) -> Option<&ActivityTaskCompletedEventAttributes>
pub fn activity_task_completed_event_attributes(
&self
) -> Option<&ActivityTaskCompletedEventAttributes>
If the event is of type ActivityTaskCompleted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_failed_event_attributes(
&self
) -> Option<&ActivityTaskFailedEventAttributes>
pub fn activity_task_failed_event_attributes(
&self
) -> Option<&ActivityTaskFailedEventAttributes>
If the event is of type ActivityTaskFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_timed_out_event_attributes(
&self
) -> Option<&ActivityTaskTimedOutEventAttributes>
pub fn activity_task_timed_out_event_attributes(
&self
) -> Option<&ActivityTaskTimedOutEventAttributes>
If the event is of type ActivityTaskTimedOut
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_canceled_event_attributes(
&self
) -> Option<&ActivityTaskCanceledEventAttributes>
pub fn activity_task_canceled_event_attributes(
&self
) -> Option<&ActivityTaskCanceledEventAttributes>
If the event is of type ActivityTaskCanceled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn activity_task_cancel_requested_event_attributes(
&self
) -> Option<&ActivityTaskCancelRequestedEventAttributes>
pub fn activity_task_cancel_requested_event_attributes(
&self
) -> Option<&ActivityTaskCancelRequestedEventAttributes>
If the event is of type ActivityTaskcancelRequested
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn workflow_execution_signaled_event_attributes(
&self
) -> Option<&WorkflowExecutionSignaledEventAttributes>
pub fn workflow_execution_signaled_event_attributes(
&self
) -> Option<&WorkflowExecutionSignaledEventAttributes>
If the event is of type WorkflowExecutionSignaled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn marker_recorded_event_attributes(
&self
) -> Option<&MarkerRecordedEventAttributes>
pub fn marker_recorded_event_attributes(
&self
) -> Option<&MarkerRecordedEventAttributes>
If the event is of type MarkerRecorded
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn record_marker_failed_event_attributes(
&self
) -> Option<&RecordMarkerFailedEventAttributes>
pub fn record_marker_failed_event_attributes(
&self
) -> Option<&RecordMarkerFailedEventAttributes>
If the event is of type DecisionTaskFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn timer_started_event_attributes(
&self
) -> Option<&TimerStartedEventAttributes>
pub fn timer_started_event_attributes(
&self
) -> Option<&TimerStartedEventAttributes>
If the event is of type TimerStarted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn timer_fired_event_attributes(&self) -> Option<&TimerFiredEventAttributes>
pub fn timer_fired_event_attributes(&self) -> Option<&TimerFiredEventAttributes>
If the event is of type TimerFired
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn timer_canceled_event_attributes(
&self
) -> Option<&TimerCanceledEventAttributes>
pub fn timer_canceled_event_attributes(
&self
) -> Option<&TimerCanceledEventAttributes>
If the event is of type TimerCanceled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn start_child_workflow_execution_initiated_event_attributes(
&self
) -> Option<&StartChildWorkflowExecutionInitiatedEventAttributes>
pub fn start_child_workflow_execution_initiated_event_attributes(
&self
) -> Option<&StartChildWorkflowExecutionInitiatedEventAttributes>
If the event is of type StartChildWorkflowExecutionInitiated
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_started_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionStartedEventAttributes>
pub fn child_workflow_execution_started_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionStartedEventAttributes>
If the event is of type ChildWorkflowExecutionStarted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_completed_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionCompletedEventAttributes>
pub fn child_workflow_execution_completed_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionCompletedEventAttributes>
If the event is of type ChildWorkflowExecutionCompleted
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_failed_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionFailedEventAttributes>
pub fn child_workflow_execution_failed_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionFailedEventAttributes>
If the event is of type ChildWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_timed_out_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionTimedOutEventAttributes>
pub fn child_workflow_execution_timed_out_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionTimedOutEventAttributes>
If the event is of type ChildWorkflowExecutionTimedOut
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_canceled_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionCanceledEventAttributes>
pub fn child_workflow_execution_canceled_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionCanceledEventAttributes>
If the event is of type ChildWorkflowExecutionCanceled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn child_workflow_execution_terminated_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionTerminatedEventAttributes>
pub fn child_workflow_execution_terminated_event_attributes(
&self
) -> Option<&ChildWorkflowExecutionTerminatedEventAttributes>
If the event is of type ChildWorkflowExecutionTerminated
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn signal_external_workflow_execution_initiated_event_attributes(
&self
) -> Option<&SignalExternalWorkflowExecutionInitiatedEventAttributes>
pub fn signal_external_workflow_execution_initiated_event_attributes(
&self
) -> Option<&SignalExternalWorkflowExecutionInitiatedEventAttributes>
If the event is of type SignalExternalWorkflowExecutionInitiated
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn external_workflow_execution_signaled_event_attributes(
&self
) -> Option<&ExternalWorkflowExecutionSignaledEventAttributes>
pub fn external_workflow_execution_signaled_event_attributes(
&self
) -> Option<&ExternalWorkflowExecutionSignaledEventAttributes>
If the event is of type ExternalWorkflowExecutionSignaled
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn signal_external_workflow_execution_failed_event_attributes(
&self
) -> Option<&SignalExternalWorkflowExecutionFailedEventAttributes>
pub fn signal_external_workflow_execution_failed_event_attributes(
&self
) -> Option<&SignalExternalWorkflowExecutionFailedEventAttributes>
If the event is of type SignalExternalWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn external_workflow_execution_cancel_requested_event_attributes(
&self
) -> Option<&ExternalWorkflowExecutionCancelRequestedEventAttributes>
pub fn external_workflow_execution_cancel_requested_event_attributes(
&self
) -> Option<&ExternalWorkflowExecutionCancelRequestedEventAttributes>
If the event is of type ExternalWorkflowExecutionCancelRequested
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn request_cancel_external_workflow_execution_initiated_event_attributes(
&self
) -> Option<&RequestCancelExternalWorkflowExecutionInitiatedEventAttributes>
pub fn request_cancel_external_workflow_execution_initiated_event_attributes(
&self
) -> Option<&RequestCancelExternalWorkflowExecutionInitiatedEventAttributes>
If the event is of type RequestCancelExternalWorkflowExecutionInitiated
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn request_cancel_external_workflow_execution_failed_event_attributes(
&self
) -> Option<&RequestCancelExternalWorkflowExecutionFailedEventAttributes>
pub fn request_cancel_external_workflow_execution_failed_event_attributes(
&self
) -> Option<&RequestCancelExternalWorkflowExecutionFailedEventAttributes>
If the event is of type RequestCancelExternalWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn schedule_activity_task_failed_event_attributes(
&self
) -> Option<&ScheduleActivityTaskFailedEventAttributes>
pub fn schedule_activity_task_failed_event_attributes(
&self
) -> Option<&ScheduleActivityTaskFailedEventAttributes>
If the event is of type ScheduleActivityTaskFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn request_cancel_activity_task_failed_event_attributes(
&self
) -> Option<&RequestCancelActivityTaskFailedEventAttributes>
pub fn request_cancel_activity_task_failed_event_attributes(
&self
) -> Option<&RequestCancelActivityTaskFailedEventAttributes>
If the event is of type RequestCancelActivityTaskFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn start_timer_failed_event_attributes(
&self
) -> Option<&StartTimerFailedEventAttributes>
pub fn start_timer_failed_event_attributes(
&self
) -> Option<&StartTimerFailedEventAttributes>
If the event is of type StartTimerFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn cancel_timer_failed_event_attributes(
&self
) -> Option<&CancelTimerFailedEventAttributes>
pub fn cancel_timer_failed_event_attributes(
&self
) -> Option<&CancelTimerFailedEventAttributes>
If the event is of type CancelTimerFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn start_child_workflow_execution_failed_event_attributes(
&self
) -> Option<&StartChildWorkflowExecutionFailedEventAttributes>
pub fn start_child_workflow_execution_failed_event_attributes(
&self
) -> Option<&StartChildWorkflowExecutionFailedEventAttributes>
If the event is of type StartChildWorkflowExecutionFailed
then this member is set and provides detailed information about the event. It isn't set for other event types.
sourcepub fn lambda_function_scheduled_event_attributes(
&self
) -> Option<&LambdaFunctionScheduledEventAttributes>
pub fn lambda_function_scheduled_event_attributes(
&self
) -> Option<&LambdaFunctionScheduledEventAttributes>
Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event types.
sourcepub fn lambda_function_started_event_attributes(
&self
) -> Option<&LambdaFunctionStartedEventAttributes>
pub fn lambda_function_started_event_attributes(
&self
) -> Option<&LambdaFunctionStartedEventAttributes>
Provides the details of the LambdaFunctionStarted
event. It isn't set for other event types.
sourcepub fn lambda_function_completed_event_attributes(
&self
) -> Option<&LambdaFunctionCompletedEventAttributes>
pub fn lambda_function_completed_event_attributes(
&self
) -> Option<&LambdaFunctionCompletedEventAttributes>
Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event types.
sourcepub fn lambda_function_failed_event_attributes(
&self
) -> Option<&LambdaFunctionFailedEventAttributes>
pub fn lambda_function_failed_event_attributes(
&self
) -> Option<&LambdaFunctionFailedEventAttributes>
Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.
sourcepub fn lambda_function_timed_out_event_attributes(
&self
) -> Option<&LambdaFunctionTimedOutEventAttributes>
pub fn lambda_function_timed_out_event_attributes(
&self
) -> Option<&LambdaFunctionTimedOutEventAttributes>
Provides the details of the LambdaFunctionTimedOut
event. It isn't set for other event types.
sourcepub fn schedule_lambda_function_failed_event_attributes(
&self
) -> Option<&ScheduleLambdaFunctionFailedEventAttributes>
pub fn schedule_lambda_function_failed_event_attributes(
&self
) -> Option<&ScheduleLambdaFunctionFailedEventAttributes>
Provides the details of the ScheduleLambdaFunctionFailed
event. It isn't set for other event types.
sourcepub fn start_lambda_function_failed_event_attributes(
&self
) -> Option<&StartLambdaFunctionFailedEventAttributes>
pub fn start_lambda_function_failed_event_attributes(
&self
) -> Option<&StartLambdaFunctionFailedEventAttributes>
Provides the details of the StartLambdaFunctionFailed
event. It isn't set for other event types.
sourceimpl HistoryEvent
impl HistoryEvent
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HistoryEvent
.
Trait Implementations
sourceimpl Clone for HistoryEvent
impl Clone for HistoryEvent
sourcefn clone(&self) -> HistoryEvent
fn clone(&self) -> HistoryEvent
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more