WorkflowExecutionCancelRequestedEventAttributes

public struct WorkflowExecutionCancelRequestedEventAttributes : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • If set, indicates that the request to cancel the workflow execution was automatically generated, and specifies the cause. This happens if the parent workflow execution times out or is terminated, and the child policy is set to cancel child executions.

    Declaration

    Swift

    public let cause: WorkflowExecutionCancelRequestedCause?
  • The ID of the RequestCancelExternalWorkflowExecutionInitiated event corresponding to the RequestCancelExternalWorkflowExecution decision to cancel this workflow execution.The source event with this ID can be found in the history of the source workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    Declaration

    Swift

    public let externalInitiatedEventId: Int64?
  • The external workflow execution for which the cancellation was requested.

    Declaration

    Swift

    public let externalWorkflowExecution: WorkflowExecution?
  • Undocumented

    Declaration

    Swift

    public init(cause: WorkflowExecutionCancelRequestedCause? = nil, externalInitiatedEventId: Int64? = nil, externalWorkflowExecution: WorkflowExecution? = nil)