package types

import "github.com/aws/aws-sdk-go-v2/service/swf/types"

Index

Types

type ActivityTaskCancelRequestedEventAttributes

type ActivityTaskCancelRequestedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RequestCancelActivityTask decision for this cancellation
	// request. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The unique ID of the task.
	ActivityId *string
}

Provides the details of the ActivityTaskCancelRequested event.

type ActivityTaskCanceledEventAttributes

type ActivityTaskCanceledEventAttributes struct {
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// If set, contains the ID of the last ActivityTaskCancelRequested event recorded
	// for this activity task. This information can be useful for diagnosing problems
	// by tracing back the chain of events leading up to this event.
	LatestCancelRequestedEventId *int64
	// Details of the cancellation.
	Details *string
	// The ID of the ActivityTaskStarted event recorded when this activity task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
}

Provides the details of the ActivityTaskCanceled event.

type ActivityTaskCompletedEventAttributes

type ActivityTaskCompletedEventAttributes struct {
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// The results of the activity task.
	Result *string
	// The ID of the ActivityTaskStarted event recorded when this activity task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
}

Provides the details of the ActivityTaskCompleted event.

type ActivityTaskFailedEventAttributes

type ActivityTaskFailedEventAttributes struct {
	// The ID of the ActivityTaskStarted event recorded when this activity task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
	// The reason provided for the failure.
	Reason *string
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// The details of the failure.
	Details *string
}

Provides the details of the ActivityTaskFailed event.

type ActivityTaskScheduledEventAttributes

type ActivityTaskScheduledEventAttributes struct {
	// The priority to assign to the scheduled activity task. If set, this overrides
	// any default priority value that was assigned when the activity type was
	// registered. Valid values are integers that range from Java's Integer.MIN_VALUE
	// (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher
	// priority. For more information about setting task priority, see Setting Task
	// Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// Data attached to the event that can be used by the decider in subsequent
	// workflow tasks. This data isn't sent to the activity.
	Control *string
	// The task list in which the activity task has been scheduled.
	TaskList *TaskList
	// The type of the activity task.
	ActivityType *ActivityType
	// The ID of the DecisionTaskCompleted event corresponding to the decision that
	// resulted in the scheduling of this activity task. This information can be useful
	// for diagnosing problems by tracing back the chain of events leading up to this
	// event.
	DecisionTaskCompletedEventId *int64
	// The maximum amount of time a worker may take to process the activity task.
	StartToCloseTimeout *string
	// The input provided to the activity task.
	Input *string
	// The unique ID of the activity task.
	ActivityId *string
	// The maximum time before which the worker processing this task must report
	// progress by calling RecordActivityTaskHeartbeat (). If the timeout is exceeded,
	// the activity task is automatically timed out. If the worker subsequently
	// attempts to record a heartbeat or return a result, it is ignored.
	HeartbeatTimeout *string
	// The maximum amount of time the activity task can wait to be assigned to a
	// worker.
	ScheduleToStartTimeout *string
	// The maximum amount of time for this activity task.
	ScheduleToCloseTimeout *string
}

Provides the details of the ActivityTaskScheduled event.

type ActivityTaskStartedEventAttributes

type ActivityTaskStartedEventAttributes struct {
	// Identity of the worker that was assigned this task. This aids diagnostics when
	// problems arise. The form of this identity is user defined.
	Identity *string
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
}

Provides the details of the ActivityTaskStarted event.

type ActivityTaskTimedOutEventAttributes

type ActivityTaskTimedOutEventAttributes struct {
	// The ID of the ActivityTaskStarted event recorded when this activity task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// Contains the content of the details parameter for the last call made by the
	// activity to RecordActivityTaskHeartbeat.
	Details *string
	// The type of the timeout that caused this event.
	TimeoutType ActivityTaskTimeoutType
}

Provides the details of the ActivityTaskTimedOut event.

type ActivityTaskTimeoutType

type ActivityTaskTimeoutType string
const (
	ActivityTaskTimeoutTypeStart_to_close    ActivityTaskTimeoutType = "START_TO_CLOSE"
	ActivityTaskTimeoutTypeSchedule_to_start ActivityTaskTimeoutType = "SCHEDULE_TO_START"
	ActivityTaskTimeoutTypeSchedule_to_close ActivityTaskTimeoutType = "SCHEDULE_TO_CLOSE"
	ActivityTaskTimeoutTypeHeartbeat         ActivityTaskTimeoutType = "HEARTBEAT"
)

Enum values for ActivityTaskTimeoutType

type ActivityType

type ActivityType struct {
	// The name of this activity. The combination of activity type name and version
	// must be unique within a domain.
	Name *string
	// The version of this activity. The combination of activity type name and version
	// must be unique with in a domain.
	Version *string
}

Represents an activity type.

type ActivityTypeConfiguration

type ActivityTypeConfiguration struct {
	// The default maximum time, in seconds, before which a worker processing a task
	// must report progress by calling RecordActivityTaskHeartbeat (). You can specify
	// this value only when registering an activity type. The registered default value
	// can be overridden when you schedule a task through the
	// ScheduleActivityTaskDecision (). If the activity worker subsequently attempts to
	// record a heartbeat or returns a result, the activity worker receives an
	// UnknownResource fault. In this case, Amazon SWF no longer considers the activity
	// task to be valid; the activity worker should clean up the activity task. The
	// duration is specified in seconds, an integer greater than or equal to 0. You can
	// use NONE to specify unlimited duration.
	DefaultTaskHeartbeatTimeout *string
	// The default maximum duration for tasks of an activity type specified when
	// registering the activity type. You can override this default when scheduling a
	// task through the ScheduleActivityTaskDecision (). The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	DefaultTaskStartToCloseTimeout *string
	// The default task list specified for this activity type at registration. This
	// default is used if a task list isn't provided when a task is scheduled through
	// the ScheduleActivityTaskDecision (). You can override the default registered
	// task list when scheduling a task through the ScheduleActivityTaskDecision ().
	DefaultTaskList *TaskList
	// The default maximum duration, specified when registering the activity type, that
	// a task of an activity type can wait before being assigned to a worker. You can
	// override this default when scheduling a task through the
	// ScheduleActivityTaskDecision (). The duration is specified in seconds, an
	// integer greater than or equal to 0. You can use NONE to specify unlimited
	// duration.
	DefaultTaskScheduleToStartTimeout *string
	// The default maximum duration, specified when registering the activity type, for
	// tasks of this activity type. You can override this default when scheduling a
	// task through the ScheduleActivityTaskDecision (). The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	DefaultTaskScheduleToCloseTimeout *string
	// The default task priority for tasks of this activity type, specified at
	// registration. If not set, then 0 is used as the default priority. This default
	// can be overridden when scheduling an activity task. Valid values are integers
	// that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE
	// (2147483647). Higher numbers indicate higher priority. For more information
	// about setting task priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	DefaultTaskPriority *string
}

Configuration settings registered with the activity type.

type ActivityTypeInfo

type ActivityTypeInfo struct {
	// The description of the activity type provided in RegisterActivityType ().
	Description *string
	// The current status of the activity type.
	Status RegistrationStatus
	// If DEPRECATED, the date and time DeprecateActivityType () was called.
	DeprecationDate *time.Time
	// The ActivityType () type structure representing the activity type.
	ActivityType *ActivityType
	// The date and time this activity type was created through RegisterActivityType
	// ().
	CreationDate *time.Time
}

Detailed information about an activity type.

type CancelTimerDecisionAttributes

type CancelTimerDecisionAttributes struct {
	// The unique ID of the timer to cancel.
	TimerId *string
}

Provides the details of the CancelTimer decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

* Use a Resource element with the domain name to limit the action to only specified domains.

call this action.

parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type CancelTimerFailedCause

type CancelTimerFailedCause string
const (
	CancelTimerFailedCauseTimer_id_unknown        CancelTimerFailedCause = "TIMER_ID_UNKNOWN"
	CancelTimerFailedCauseOperation_not_permitted CancelTimerFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for CancelTimerFailedCause

type CancelTimerFailedEventAttributes

type CancelTimerFailedEventAttributes struct {
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause CancelTimerFailedCause
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CancelTimer decision to cancel this timer. This information
	// can be useful for diagnosing problems by tracing back the chain of events
	// leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The timerId provided in the CancelTimer decision that failed.
	TimerId *string
}

Provides the details of the CancelTimerFailed event.

type CancelWorkflowExecutionDecisionAttributes

type CancelWorkflowExecutionDecisionAttributes struct {
	// Details of the cancellation.
	Details *string
}

Provides the details of the CancelWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

action to only specified domains.

permission to call this action.

this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type CancelWorkflowExecutionFailedCause

type CancelWorkflowExecutionFailedCause string
const (
	CancelWorkflowExecutionFailedCauseUnhandled_decision      CancelWorkflowExecutionFailedCause = "UNHANDLED_DECISION"
	CancelWorkflowExecutionFailedCauseOperation_not_permitted CancelWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for CancelWorkflowExecutionFailedCause

type CancelWorkflowExecutionFailedEventAttributes

type CancelWorkflowExecutionFailedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CancelWorkflowExecution decision for this cancellation
	// request. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause CancelWorkflowExecutionFailedCause
}

Provides the details of the CancelWorkflowExecutionFailed event.

type ChildPolicy

type ChildPolicy string
const (
	ChildPolicyTerminate      ChildPolicy = "TERMINATE"
	ChildPolicyRequest_cancel ChildPolicy = "REQUEST_CANCEL"
	ChildPolicyAbandon        ChildPolicy = "ABANDON"
)

Enum values for ChildPolicy

type ChildWorkflowExecutionCanceledEventAttributes

type ChildWorkflowExecutionCanceledEventAttributes struct {
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
	// Details of the cancellation (if provided).
	Details *string
	// The child workflow execution that was canceled.
	WorkflowExecution *WorkflowExecution
	// The ID of the ChildWorkflowExecutionStarted event 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.
	StartedEventId *int64
}

Provide details of the ChildWorkflowExecutionCanceled event.

type ChildWorkflowExecutionCompletedEventAttributes

type ChildWorkflowExecutionCompletedEventAttributes struct {
	// The ID of the ChildWorkflowExecutionStarted event 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.
	StartedEventId *int64
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The child workflow execution that was completed.
	WorkflowExecution *WorkflowExecution
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
	// The result of the child workflow execution.
	Result *string
}

Provides the details of the ChildWorkflowExecutionCompleted event.

type ChildWorkflowExecutionFailedEventAttributes

type ChildWorkflowExecutionFailedEventAttributes struct {
	// The ID of the ChildWorkflowExecutionStarted event 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.
	StartedEventId *int64
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
	// The reason for the failure (if provided).
	Reason *string
	// The details of the failure (if provided).
	Details *string
	// The child workflow execution that failed.
	WorkflowExecution *WorkflowExecution
}

Provides the details of the ChildWorkflowExecutionFailed event.

type ChildWorkflowExecutionStartedEventAttributes

type ChildWorkflowExecutionStartedEventAttributes struct {
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The child workflow execution that was started.
	WorkflowExecution *WorkflowExecution
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
}

Provides the details of the ChildWorkflowExecutionStarted event.

type ChildWorkflowExecutionTerminatedEventAttributes

type ChildWorkflowExecutionTerminatedEventAttributes struct {
	// The child workflow execution that was terminated.
	WorkflowExecution *WorkflowExecution
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The ID of the ChildWorkflowExecutionStarted event 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.
	StartedEventId *int64
}

Provides the details of the ChildWorkflowExecutionTerminated event.

type ChildWorkflowExecutionTimedOutEventAttributes

type ChildWorkflowExecutionTimedOutEventAttributes struct {
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () 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.
	InitiatedEventId *int64
	// The type of the timeout that caused the child workflow execution to time out.
	TimeoutType WorkflowExecutionTimeoutType
	// The ID of the ChildWorkflowExecutionStarted event 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.
	StartedEventId *int64
	// The child workflow execution that timed out.
	WorkflowExecution *WorkflowExecution
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
}

Provides the details of the ChildWorkflowExecutionTimedOut event.

type CloseStatus

type CloseStatus string
const (
	CloseStatusCompleted        CloseStatus = "COMPLETED"
	CloseStatusFailed           CloseStatus = "FAILED"
	CloseStatusCanceled         CloseStatus = "CANCELED"
	CloseStatusTerminated       CloseStatus = "TERMINATED"
	CloseStatusContinued_as_new CloseStatus = "CONTINUED_AS_NEW"
	CloseStatusTimed_out        CloseStatus = "TIMED_OUT"
)

Enum values for CloseStatus

type CloseStatusFilter

type CloseStatusFilter struct {
	// The close status that must match the close status of an execution for it to meet
	// the criteria of this filter.
	Status CloseStatus
}

Used to filter the closed workflow executions in visibility APIs by their close status.

type CompleteWorkflowExecutionDecisionAttributes

type CompleteWorkflowExecutionDecisionAttributes struct {
	// The result of the workflow execution. The form of the result is implementation
	// defined.
	Result *string
}

Provides the details of the CompleteWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

limit the action to only specified domains.

allow or deny permission to call this action.

policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type CompleteWorkflowExecutionFailedCause

type CompleteWorkflowExecutionFailedCause string
const (
	CompleteWorkflowExecutionFailedCauseUnhandled_decision      CompleteWorkflowExecutionFailedCause = "UNHANDLED_DECISION"
	CompleteWorkflowExecutionFailedCauseOperation_not_permitted CompleteWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for CompleteWorkflowExecutionFailedCause

type CompleteWorkflowExecutionFailedEventAttributes

type CompleteWorkflowExecutionFailedEventAttributes struct {
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause CompleteWorkflowExecutionFailedCause
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CompleteWorkflowExecution decision to complete this
	// execution. This information can be useful for diagnosing problems by tracing
	// back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
}

Provides the details of the CompleteWorkflowExecutionFailed event.

type ContinueAsNewWorkflowExecutionDecisionAttributes

type ContinueAsNewWorkflowExecutionDecisionAttributes struct {
	// The list of tags to associate with the new workflow execution. A maximum of 5
	// tags can be specified. You can list workflow executions with a specific tag by
	// calling ListOpenWorkflowExecutions () or ListClosedWorkflowExecutions () and
	// specifying a TagFilter ().
	TagList []*string
	// The input provided to the new workflow execution.
	Input *string
	// The IAM role to attach to the new (continued) execution.
	LambdaRole *string
	// If set, specifies the total duration for this workflow execution. This overrides
	// the defaultExecutionStartToCloseTimeout specified when registering the workflow
	// type. The duration is specified in seconds, an integer greater than or equal to
	// 0. You can use NONE to specify unlimited duration. An execution start-to-close
	// timeout for this workflow execution must be specified either as a default for
	// the workflow type or through this field. If neither this field is set nor a
	// default execution start-to-close timeout was specified at registration time then
	// a fault is returned.
	ExecutionStartToCloseTimeout *string
	// The version of the workflow to start.
	WorkflowTypeVersion *string
	// The task priority that, if set, specifies the priority for the decision tasks
	// for this workflow execution. This overrides the defaultTaskPriority specified
	// when registering the workflow type. Valid values are integers that range from
	// Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher
	// numbers indicate higher priority. For more information about setting task
	// priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// The task list to use for the decisions of the new (continued) workflow
	// execution.
	TaskList *TaskList
	// Specifies the maximum duration of decision tasks for the new workflow execution.
	// This parameter overrides the defaultTaskStartToCloseTimout specified when
	// registering the workflow type using RegisterWorkflowType (). The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration. A task start-to-close timeout for the new workflow
	// execution must be specified either as a default for the workflow type or through
	// this parameter. If neither this parameter is set nor a default task
	// start-to-close timeout was specified at registration time then a fault is
	// returned.
	TaskStartToCloseTimeout *string
	// If set, specifies the policy to use for the child workflow executions of the new
	// execution if it is terminated by calling the TerminateWorkflowExecution ()
	// action explicitly or due to an expired timeout. This policy overrides the
	// default child policy specified when registering the workflow type using
	// RegisterWorkflowType (). The supported child policies are:
	//
	//     * TERMINATE –
	// The child executions are terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel
	// is attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	//
	// A child policy for this workflow execution must be specified either as a
	// default for the workflow type or through this parameter. If neither this
	// parameter is set nor a default child policy was specified at registration time
	// then a fault is returned.
	ChildPolicy ChildPolicy
}

Provides the details of the ContinueAsNewWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

limit the action to only specified domains.

allow or deny permission to call this action.

parameters by using a Condition element with the appropriate keys.

*

tag – A tag used to identify the workflow execution

constraint. The key is swf:taskList.name.

String constraint. The key is swf:workflowType.version.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type ContinueAsNewWorkflowExecutionFailedCause

type ContinueAsNewWorkflowExecutionFailedCause string
const (
	ContinueAsNewWorkflowExecutionFailedCauseUnhandled_decision                                 ContinueAsNewWorkflowExecutionFailedCause = "UNHANDLED_DECISION"
	ContinueAsNewWorkflowExecutionFailedCauseWorkflow_type_deprecated                           ContinueAsNewWorkflowExecutionFailedCause = "WORKFLOW_TYPE_DEPRECATED"
	ContinueAsNewWorkflowExecutionFailedCauseWorkflow_type_does_not_exist                       ContinueAsNewWorkflowExecutionFailedCause = "WORKFLOW_TYPE_DOES_NOT_EXIST"
	ContinueAsNewWorkflowExecutionFailedCauseDefault_execution_start_to_close_timeout_undefined ContinueAsNewWorkflowExecutionFailedCause = "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED"
	ContinueAsNewWorkflowExecutionFailedCauseDefault_task_start_to_close_timeout_undefined      ContinueAsNewWorkflowExecutionFailedCause = "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED"
	ContinueAsNewWorkflowExecutionFailedCauseDefault_task_list_undefined                        ContinueAsNewWorkflowExecutionFailedCause = "DEFAULT_TASK_LIST_UNDEFINED"
	ContinueAsNewWorkflowExecutionFailedCauseDefault_child_policy_undefined                     ContinueAsNewWorkflowExecutionFailedCause = "DEFAULT_CHILD_POLICY_UNDEFINED"
	ContinueAsNewWorkflowExecutionFailedCauseContinue_as_new_workflow_execution_rate_exceeded   ContinueAsNewWorkflowExecutionFailedCause = "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED"
	ContinueAsNewWorkflowExecutionFailedCauseOperation_not_permitted                            ContinueAsNewWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for ContinueAsNewWorkflowExecutionFailedCause

type ContinueAsNewWorkflowExecutionFailedEventAttributes

type ContinueAsNewWorkflowExecutionFailedEventAttributes struct {
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause ContinueAsNewWorkflowExecutionFailedCause
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the ContinueAsNewWorkflowExecution decision that started this
	// execution. This information can be useful for diagnosing problems by tracing
	// back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
}

Provides the details of the ContinueAsNewWorkflowExecutionFailed event.

type Decision

type Decision struct {
	// Provides the details of the FailWorkflowExecution decision. It isn't set for
	// other decision types.
	FailWorkflowExecutionDecisionAttributes *FailWorkflowExecutionDecisionAttributes
	// Specifies the type of the decision.
	DecisionType DecisionType
	// Provides the details of the SignalExternalWorkflowExecution decision. It isn't
	// set for other decision types.
	SignalExternalWorkflowExecutionDecisionAttributes *SignalExternalWorkflowExecutionDecisionAttributes
	// Provides the details of the CancelWorkflowExecution decision. It isn't set for
	// other decision types.
	CancelWorkflowExecutionDecisionAttributes *CancelWorkflowExecutionDecisionAttributes
	// Provides the details of the StartChildWorkflowExecution decision. It isn't set
	// for other decision types.
	StartChildWorkflowExecutionDecisionAttributes *StartChildWorkflowExecutionDecisionAttributes
	// Provides the details of the CancelTimer decision. It isn't set for other
	// decision types.
	CancelTimerDecisionAttributes *CancelTimerDecisionAttributes
	// Provides the details of the ScheduleLambdaFunction decision. It isn't set for
	// other decision types.
	ScheduleLambdaFunctionDecisionAttributes *ScheduleLambdaFunctionDecisionAttributes
	// Provides the details of the ContinueAsNewWorkflowExecution decision. It isn't
	// set for other decision types.
	ContinueAsNewWorkflowExecutionDecisionAttributes *ContinueAsNewWorkflowExecutionDecisionAttributes
	// Provides the details of the ScheduleActivityTask decision. It isn't set for
	// other decision types.
	ScheduleActivityTaskDecisionAttributes *ScheduleActivityTaskDecisionAttributes
	// Provides the details of the RequestCancelActivityTask decision. It isn't set for
	// other decision types.
	RequestCancelActivityTaskDecisionAttributes *RequestCancelActivityTaskDecisionAttributes
	// Provides the details of the CompleteWorkflowExecution decision. It isn't set for
	// other decision types.
	CompleteWorkflowExecutionDecisionAttributes *CompleteWorkflowExecutionDecisionAttributes
	// Provides the details of the RequestCancelExternalWorkflowExecution decision. It
	// isn't set for other decision types.
	RequestCancelExternalWorkflowExecutionDecisionAttributes *RequestCancelExternalWorkflowExecutionDecisionAttributes
	// Provides the details of the RecordMarker decision. It isn't set for other
	// decision types.
	RecordMarkerDecisionAttributes *RecordMarkerDecisionAttributes
	// Provides the details of the StartTimer decision. It isn't set for other decision
	// types.
	StartTimerDecisionAttributes *StartTimerDecisionAttributes
}

Specifies a decision made by the decider. A decision can be one of these types:

TimerCanceled event in the history.

workflow execution and records a WorkflowExecutionCanceled event in the history.

records a WorkflowExecutionCompleted event in the history .

*

ContinueAsNewWorkflowExecution – Closes the workflow execution and starts a new workflow execution of the same type using the same workflow ID and a unique run Id. A WorkflowExecutionContinuedAsNew event is recorded in the history.

*

FailWorkflowExecution – Closes the workflow execution and records a WorkflowExecutionFailed event in the history.

MarkerRecorded event in the history. Markers can be used for adding custom information in the history for instance to let deciders know that they don't need to look at the history beyond the marker event.

*

RequestCancelActivityTask – Attempts to cancel a previously scheduled activity task. If the activity task was scheduled but has not been assigned to a worker, then it is canceled. If the activity task was already assigned to a worker, then the worker is informed that cancellation has been requested in the response to RecordActivityTaskHeartbeat ().

Requests that a request be made to cancel the specified external workflow execution and records a RequestCancelExternalWorkflowExecutionInitiated event in the history.

SignalExternalWorkflowExecution – Requests a signal to be delivered to the specified external workflow execution and records a SignalExternalWorkflowExecutionInitiated event in the history.

*

StartChildWorkflowExecution – Requests that a child workflow execution be started and records a StartChildWorkflowExecutionInitiated event in the history. The child workflow execution is a separate workflow execution with its own history.

records a TimerStarted event in the history. This timer fires after the specified delay and record a TimerFired event.

Access Control If you grant permission to use RespondDecisionTaskCompleted, you can use IAM policies to express permissions for the list of decisions returned by this action as if they were members of the API. Treating decisions as a pseudo API maintains a uniform conceptual model and helps keep policies readable. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide. <p> <b>Decision Failure</b> </p> <p>Decisions can fail for several reasons</p> <ul> <li> <p>The ordering of decisions should follow a logical flow. Some decisions might not make sense in the current context of the workflow execution and therefore fails.</p> </li> <li> <p>A limit on your account was reached.</p> </li> <li> <p>The decision lacks sufficient permissions.</p> </li> </ul> <p>One of the following events might be added to the history to indicate an error. The event attribute's <code>cause</code> parameter indicates the cause. If <code>cause</code> is set to <code>OPERATION_NOT_PERMITTED</code>, the decision failed because it lacked sufficient permissions. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide. <ul> <li> <p> <code>ScheduleActivityTaskFailed</code> – A <code>ScheduleActivityTask</code> decision failed. This could happen if the activity type specified in the decision isn't registered, is in a deprecated state, or the decision isn't properly configured.</p> </li> <li> <p> <code>RequestCancelActivityTaskFailed</code> – A <code>RequestCancelActivityTask</code> decision failed. This could happen if there is no open activity task with the specified activityId.</p> </li> <li> <p> <code>StartTimerFailed</code> – A <code>StartTimer</code> decision failed. This could happen if there is another open timer with the same timerId.</p> </li> <li> <p> <code>CancelTimerFailed</code> – A <code>CancelTimer</code> decision failed. This could happen if there is no open timer with the specified timerId.</p> </li> <li> <p> <code>StartChildWorkflowExecutionFailed</code> – A <code>StartChildWorkflowExecution</code> decision failed. This could happen if the workflow type specified isn't registered, is deprecated, or the decision isn't properly configured.</p> </li> <li> <p> <code>SignalExternalWorkflowExecutionFailed</code> – A <code>SignalExternalWorkflowExecution</code> decision failed. This could happen if the <code>workflowID</code> specified in the decision was incorrect.</p> </li> <li> <p> <code>RequestCancelExternalWorkflowExecutionFailed</code> – A <code>RequestCancelExternalWorkflowExecution</code> decision failed. This could happen if the <code>workflowID</code> specified in the decision was incorrect.</p> </li> <li> <p> <code>CancelWorkflowExecutionFailed</code> – A <code>CancelWorkflowExecution</code> decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</p> </li> <li> <p> <code>CompleteWorkflowExecutionFailed</code> – A <code>CompleteWorkflowExecution</code> decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</p> </li> <li> <p> <code>ContinueAsNewWorkflowExecutionFailed</code> – A <code>ContinueAsNewWorkflowExecution</code> decision failed. This could happen if there is an unhandled decision task pending in the workflow execution or the ContinueAsNewWorkflowExecution decision was not configured correctly.</p> </li> <li> <p> <code>FailWorkflowExecutionFailed</code> – A <code>FailWorkflowExecution</code> decision failed. This could happen if there is an unhandled decision task pending in the workflow execution.</p> </li> </ul> <p>The preceding error events might occur due to an error in the decider logic, which might put the workflow execution in an unstable state The cause field in the event structure for the error event indicates the cause of the error.</p> <note> <p>A workflow execution may be closed by the decider by returning one of the following decisions when completing a decision task: <code>CompleteWorkflowExecution</code>, <code>FailWorkflowExecution</code>, <code>CancelWorkflowExecution</code> and <code>ContinueAsNewWorkflowExecution</code>. An <code>UnhandledDecision</code> fault is returned if a workflow closing decision is specified and a signal or activity event had been added to the history while the decision task was being performed by the decider. Unlike the above situations which are logic issues, this fault is always possible because of race conditions in a distributed system. The right action here is to call <a>RespondDecisionTaskCompleted</a> without any decisions. This would result in another decision task with these new events included in the history. The decider should handle the new events and may decide to close the workflow execution.</p> </note> <p> <b>How to Code a Decision</b> </p> <p>You code a decision by first setting the decision type field to one of the above decision values, and then set the corresponding attributes field shown below:</p> <ul> <li> <p> <code> <a>ScheduleActivityTaskDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>RequestCancelActivityTaskDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>CompleteWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>FailWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>CancelWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>ContinueAsNewWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>RecordMarkerDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>StartTimerDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>CancelTimerDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>SignalExternalWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>RequestCancelExternalWorkflowExecutionDecisionAttributes</a> </code> </p> </li> <li> <p> <code> <a>StartChildWorkflowExecutionDecisionAttributes</a> </code> </p> </li> </ul>

type DecisionTaskCompletedEventAttributes

type DecisionTaskCompletedEventAttributes struct {
	// The ID of the DecisionTaskStarted event recorded when this decision task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
	// The ID of the DecisionTaskScheduled event that was recorded when this decision
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// User defined context for the workflow execution.
	ExecutionContext *string
}

Provides the details of the DecisionTaskCompleted event.

type DecisionTaskScheduledEventAttributes

type DecisionTaskScheduledEventAttributes struct {
	// A task priority that, if set, specifies the priority for this decision task.
	// Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648)
	// to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority. For
	// more information about setting task priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// The name of the task list in which the decision task was scheduled.
	TaskList *TaskList
	// The maximum duration for this decision task. The task is considered timed out if
	// it doesn't completed within this duration. The duration is specified in seconds,
	// an integer greater than or equal to 0. You can use NONE to specify unlimited
	// duration.
	StartToCloseTimeout *string
}

Provides details about the DecisionTaskScheduled event.

type DecisionTaskStartedEventAttributes

type DecisionTaskStartedEventAttributes struct {
	// Identity of the decider making the request. This enables diagnostic tracing when
	// problems arise. The form of this identity is user defined.
	Identity *string
	// The ID of the DecisionTaskScheduled event that was recorded when this decision
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
}

Provides the details of the DecisionTaskStarted event.

type DecisionTaskTimedOutEventAttributes

type DecisionTaskTimedOutEventAttributes struct {
	// The type of timeout that expired before the decision task could be completed.
	TimeoutType DecisionTaskTimeoutType
	// The ID of the DecisionTaskScheduled event that was recorded when this decision
	// task was scheduled. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	ScheduledEventId *int64
	// The ID of the DecisionTaskStarted event recorded when this decision task was
	// started. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	StartedEventId *int64
}

Provides the details of the DecisionTaskTimedOut event.

type DecisionTaskTimeoutType

type DecisionTaskTimeoutType string
const (
	DecisionTaskTimeoutTypeStart_to_close DecisionTaskTimeoutType = "START_TO_CLOSE"
)

Enum values for DecisionTaskTimeoutType

type DecisionType

type DecisionType string
const (
	DecisionTypeScheduleactivitytask                   DecisionType = "ScheduleActivityTask"
	DecisionTypeRequestcancelactivitytask              DecisionType = "RequestCancelActivityTask"
	DecisionTypeCompleteworkflowexecution              DecisionType = "CompleteWorkflowExecution"
	DecisionTypeFailworkflowexecution                  DecisionType = "FailWorkflowExecution"
	DecisionTypeCancelworkflowexecution                DecisionType = "CancelWorkflowExecution"
	DecisionTypeContinueasnewworkflowexecution         DecisionType = "ContinueAsNewWorkflowExecution"
	DecisionTypeRecordmarker                           DecisionType = "RecordMarker"
	DecisionTypeStarttimer                             DecisionType = "StartTimer"
	DecisionTypeCanceltimer                            DecisionType = "CancelTimer"
	DecisionTypeSignalexternalworkflowexecution        DecisionType = "SignalExternalWorkflowExecution"
	DecisionTypeRequestcancelexternalworkflowexecution DecisionType = "RequestCancelExternalWorkflowExecution"
	DecisionTypeStartchildworkflowexecution            DecisionType = "StartChildWorkflowExecution"
	DecisionTypeSchedulelambdafunction                 DecisionType = "ScheduleLambdaFunction"
)

Enum values for DecisionType

type DefaultUndefinedFault

type DefaultUndefinedFault struct {
	Message *string
}

The StartWorkflowExecution API action was called without the required parameters set. Some workflow execution parameters, such as the decision taskList, must be set to start the execution. However, these parameters might have been set as defaults when the workflow type was registered. In this case, you can omit these parameters from the StartWorkflowExecution call and Amazon SWF uses the values defined in the workflow type. If these parameters aren't set and no default parameters were defined in the workflow type, this error is displayed.

func (*DefaultUndefinedFault) Error

func (e *DefaultUndefinedFault) Error() string

func (*DefaultUndefinedFault) ErrorCode

func (e *DefaultUndefinedFault) ErrorCode() string

func (*DefaultUndefinedFault) ErrorFault

func (e *DefaultUndefinedFault) ErrorFault() smithy.ErrorFault

func (*DefaultUndefinedFault) ErrorMessage

func (e *DefaultUndefinedFault) ErrorMessage() string

func (*DefaultUndefinedFault) GetMessage

func (e *DefaultUndefinedFault) GetMessage() string

func (*DefaultUndefinedFault) HasMessage

func (e *DefaultUndefinedFault) HasMessage() bool

type DomainAlreadyExistsFault

type DomainAlreadyExistsFault struct {
	Message *string
}

Returned if the domain already exists. You may get this fault if you are registering a domain that is either already registered or deprecated, or if you undeprecate a domain that is currently registered.

func (*DomainAlreadyExistsFault) Error

func (e *DomainAlreadyExistsFault) Error() string

func (*DomainAlreadyExistsFault) ErrorCode

func (e *DomainAlreadyExistsFault) ErrorCode() string

func (*DomainAlreadyExistsFault) ErrorFault

func (e *DomainAlreadyExistsFault) ErrorFault() smithy.ErrorFault

func (*DomainAlreadyExistsFault) ErrorMessage

func (e *DomainAlreadyExistsFault) ErrorMessage() string

func (*DomainAlreadyExistsFault) GetMessage

func (e *DomainAlreadyExistsFault) GetMessage() string

func (*DomainAlreadyExistsFault) HasMessage

func (e *DomainAlreadyExistsFault) HasMessage() bool

type DomainConfiguration

type DomainConfiguration struct {
	// The retention period for workflow executions in this domain.
	WorkflowExecutionRetentionPeriodInDays *string
}

Contains the configuration settings of a domain.

type DomainDeprecatedFault

type DomainDeprecatedFault struct {
	Message *string
}

Returned when the specified domain has been deprecated.

func (*DomainDeprecatedFault) Error

func (e *DomainDeprecatedFault) Error() string

func (*DomainDeprecatedFault) ErrorCode

func (e *DomainDeprecatedFault) ErrorCode() string

func (*DomainDeprecatedFault) ErrorFault

func (e *DomainDeprecatedFault) ErrorFault() smithy.ErrorFault

func (*DomainDeprecatedFault) ErrorMessage

func (e *DomainDeprecatedFault) ErrorMessage() string

func (*DomainDeprecatedFault) GetMessage

func (e *DomainDeprecatedFault) GetMessage() string

func (*DomainDeprecatedFault) HasMessage

func (e *DomainDeprecatedFault) HasMessage() bool

type DomainInfo

type DomainInfo struct {
	// The status of the domain:
	//
	//     * REGISTERED – The domain is properly registered
	// and available. You can use this domain for registering types and creating new
	// workflow executions.
	//
	//     * DEPRECATED – The domain was deprecated using
	// DeprecateDomain (), but is still in use. You should not create new workflow
	// executions in this domain.
	Status RegistrationStatus
	// The description of the domain provided through RegisterDomain ().
	Description *string
	// The ARN of the domain.
	Arn *string
	// The name of the domain. This name is unique within the account.
	Name *string
}

Contains general information about a domain.

type EventType

type EventType string
const (
	EventTypeWorkflowexecutionstarted                        EventType = "WorkflowExecutionStarted"
	EventTypeWorkflowexecutioncancelrequested                EventType = "WorkflowExecutionCancelRequested"
	EventTypeWorkflowexecutioncompleted                      EventType = "WorkflowExecutionCompleted"
	EventTypeCompleteworkflowexecutionfailed                 EventType = "CompleteWorkflowExecutionFailed"
	EventTypeWorkflowexecutionfailed                         EventType = "WorkflowExecutionFailed"
	EventTypeFailworkflowexecutionfailed                     EventType = "FailWorkflowExecutionFailed"
	EventTypeWorkflowexecutiontimedout                       EventType = "WorkflowExecutionTimedOut"
	EventTypeWorkflowexecutioncanceled                       EventType = "WorkflowExecutionCanceled"
	EventTypeCancelworkflowexecutionfailed                   EventType = "CancelWorkflowExecutionFailed"
	EventTypeWorkflowexecutioncontinuedasnew                 EventType = "WorkflowExecutionContinuedAsNew"
	EventTypeContinueasnewworkflowexecutionfailed            EventType = "ContinueAsNewWorkflowExecutionFailed"
	EventTypeWorkflowexecutionterminated                     EventType = "WorkflowExecutionTerminated"
	EventTypeDecisiontaskscheduled                           EventType = "DecisionTaskScheduled"
	EventTypeDecisiontaskstarted                             EventType = "DecisionTaskStarted"
	EventTypeDecisiontaskcompleted                           EventType = "DecisionTaskCompleted"
	EventTypeDecisiontasktimedout                            EventType = "DecisionTaskTimedOut"
	EventTypeActivitytaskscheduled                           EventType = "ActivityTaskScheduled"
	EventTypeScheduleactivitytaskfailed                      EventType = "ScheduleActivityTaskFailed"
	EventTypeActivitytaskstarted                             EventType = "ActivityTaskStarted"
	EventTypeActivitytaskcompleted                           EventType = "ActivityTaskCompleted"
	EventTypeActivitytaskfailed                              EventType = "ActivityTaskFailed"
	EventTypeActivitytasktimedout                            EventType = "ActivityTaskTimedOut"
	EventTypeActivitytaskcanceled                            EventType = "ActivityTaskCanceled"
	EventTypeActivitytaskcancelrequested                     EventType = "ActivityTaskCancelRequested"
	EventTypeRequestcancelactivitytaskfailed                 EventType = "RequestCancelActivityTaskFailed"
	EventTypeWorkflowexecutionsignaled                       EventType = "WorkflowExecutionSignaled"
	EventTypeMarkerrecorded                                  EventType = "MarkerRecorded"
	EventTypeRecordmarkerfailed                              EventType = "RecordMarkerFailed"
	EventTypeTimerstarted                                    EventType = "TimerStarted"
	EventTypeStarttimerfailed                                EventType = "StartTimerFailed"
	EventTypeTimerfired                                      EventType = "TimerFired"
	EventTypeTimercanceled                                   EventType = "TimerCanceled"
	EventTypeCanceltimerfailed                               EventType = "CancelTimerFailed"
	EventTypeStartchildworkflowexecutioninitiated            EventType = "StartChildWorkflowExecutionInitiated"
	EventTypeStartchildworkflowexecutionfailed               EventType = "StartChildWorkflowExecutionFailed"
	EventTypeChildworkflowexecutionstarted                   EventType = "ChildWorkflowExecutionStarted"
	EventTypeChildworkflowexecutioncompleted                 EventType = "ChildWorkflowExecutionCompleted"
	EventTypeChildworkflowexecutionfailed                    EventType = "ChildWorkflowExecutionFailed"
	EventTypeChildworkflowexecutiontimedout                  EventType = "ChildWorkflowExecutionTimedOut"
	EventTypeChildworkflowexecutioncanceled                  EventType = "ChildWorkflowExecutionCanceled"
	EventTypeChildworkflowexecutionterminated                EventType = "ChildWorkflowExecutionTerminated"
	EventTypeSignalexternalworkflowexecutioninitiated        EventType = "SignalExternalWorkflowExecutionInitiated"
	EventTypeSignalexternalworkflowexecutionfailed           EventType = "SignalExternalWorkflowExecutionFailed"
	EventTypeExternalworkflowexecutionsignaled               EventType = "ExternalWorkflowExecutionSignaled"
	EventTypeRequestcancelexternalworkflowexecutioninitiated EventType = "RequestCancelExternalWorkflowExecutionInitiated"
	EventTypeRequestcancelexternalworkflowexecutionfailed    EventType = "RequestCancelExternalWorkflowExecutionFailed"
	EventTypeExternalworkflowexecutioncancelrequested        EventType = "ExternalWorkflowExecutionCancelRequested"
	EventTypeLambdafunctionscheduled                         EventType = "LambdaFunctionScheduled"
	EventTypeLambdafunctionstarted                           EventType = "LambdaFunctionStarted"
	EventTypeLambdafunctioncompleted                         EventType = "LambdaFunctionCompleted"
	EventTypeLambdafunctionfailed                            EventType = "LambdaFunctionFailed"
	EventTypeLambdafunctiontimedout                          EventType = "LambdaFunctionTimedOut"
	EventTypeSchedulelambdafunctionfailed                    EventType = "ScheduleLambdaFunctionFailed"
	EventTypeStartlambdafunctionfailed                       EventType = "StartLambdaFunctionFailed"
)

Enum values for EventType

type ExecutionStatus

type ExecutionStatus string
const (
	ExecutionStatusOpen   ExecutionStatus = "OPEN"
	ExecutionStatusClosed ExecutionStatus = "CLOSED"
)

Enum values for ExecutionStatus

type ExecutionTimeFilter

type ExecutionTimeFilter struct {
	// Specifies the oldest start or close date and time to return.
	OldestDate *time.Time
	// Specifies the latest start or close date and time to return.
	LatestDate *time.Time
}

Used to filter the workflow executions in visibility APIs by various time-based rules. Each parameter, if specified, defines a rule that must be satisfied by each returned query result. The parameter values are in the Unix Time format (https://en.wikipedia.org/wiki/Unix_time). For example: "oldestDate": 1325376070.

type ExternalWorkflowExecutionCancelRequestedEventAttributes

type ExternalWorkflowExecutionCancelRequestedEventAttributes struct {
	// The ID of the RequestCancelExternalWorkflowExecutionInitiated event
	// corresponding to the RequestCancelExternalWorkflowExecution decision to cancel
	// this external workflow execution. This information can be useful for diagnosing
	// problems by tracing back the chain of events leading up to this event.
	InitiatedEventId *int64
	// The external workflow execution to which the cancellation request was delivered.
	WorkflowExecution *WorkflowExecution
}

Provides the details of the ExternalWorkflowExecutionCancelRequested event.

type ExternalWorkflowExecutionSignaledEventAttributes

type ExternalWorkflowExecutionSignaledEventAttributes struct {
	// The external workflow execution that the signal was delivered to.
	WorkflowExecution *WorkflowExecution
	// The ID of the SignalExternalWorkflowExecutionInitiated event corresponding to
	// the SignalExternalWorkflowExecution decision to request this signal. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	InitiatedEventId *int64
}

Provides the details of the ExternalWorkflowExecutionSignaled event.

type FailWorkflowExecutionDecisionAttributes

type FailWorkflowExecutionDecisionAttributes struct {
	// Details of the failure.
	Details *string
	// A descriptive reason for the failure that may help in diagnostics.
	Reason *string
}

Provides the details of the FailWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

action to only specified domains.

permission to call this action.

this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type FailWorkflowExecutionFailedCause

type FailWorkflowExecutionFailedCause string
const (
	FailWorkflowExecutionFailedCauseUnhandled_decision      FailWorkflowExecutionFailedCause = "UNHANDLED_DECISION"
	FailWorkflowExecutionFailedCauseOperation_not_permitted FailWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for FailWorkflowExecutionFailedCause

type FailWorkflowExecutionFailedEventAttributes

type FailWorkflowExecutionFailedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the FailWorkflowExecution decision to fail this execution. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause FailWorkflowExecutionFailedCause
}

Provides the details of the FailWorkflowExecutionFailed event.

type HistoryEvent

type HistoryEvent struct {
	// 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.
	ChildWorkflowExecutionTimedOutEventAttributes *ChildWorkflowExecutionTimedOutEventAttributes
	// 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.
	WorkflowExecutionStartedEventAttributes *WorkflowExecutionStartedEventAttributes
	// 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.
	ExternalWorkflowExecutionSignaledEventAttributes *ExternalWorkflowExecutionSignaledEventAttributes
	// 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.
	CancelTimerFailedEventAttributes *CancelTimerFailedEventAttributes
	// 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.
	ContinueAsNewWorkflowExecutionFailedEventAttributes *ContinueAsNewWorkflowExecutionFailedEventAttributes
	// 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.
	ActivityTaskCanceledEventAttributes *ActivityTaskCanceledEventAttributes
	// Provides the details of the LambdaFunctionStarted event. It isn't set for other
	// event types.
	LambdaFunctionStartedEventAttributes *LambdaFunctionStartedEventAttributes
	// 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.
	ChildWorkflowExecutionCanceledEventAttributes *ChildWorkflowExecutionCanceledEventAttributes
	// 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.
	RequestCancelExternalWorkflowExecutionFailedEventAttributes *RequestCancelExternalWorkflowExecutionFailedEventAttributes
	// 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.
	WorkflowExecutionContinuedAsNewEventAttributes *WorkflowExecutionContinuedAsNewEventAttributes
	// 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.
	ChildWorkflowExecutionCompletedEventAttributes *ChildWorkflowExecutionCompletedEventAttributes
	// Provides the details of the StartLambdaFunctionFailed event. It isn't set for
	// other event types.
	StartLambdaFunctionFailedEventAttributes *StartLambdaFunctionFailedEventAttributes
	// 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.
	TimerStartedEventAttributes *TimerStartedEventAttributes
	// 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.
	ChildWorkflowExecutionStartedEventAttributes *ChildWorkflowExecutionStartedEventAttributes
	// 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.
	RequestCancelExternalWorkflowExecutionInitiatedEventAttributes *RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
	// 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.
	WorkflowExecutionCancelRequestedEventAttributes *WorkflowExecutionCancelRequestedEventAttributes
	// Provides the details of the LambdaFunctionCompleted event. It isn't set for
	// other event types.
	LambdaFunctionCompletedEventAttributes *LambdaFunctionCompletedEventAttributes
	// The system generated ID of the event. This ID uniquely identifies the event with
	// in the workflow execution history.
	EventId *int64
	// 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.
	SignalExternalWorkflowExecutionFailedEventAttributes *SignalExternalWorkflowExecutionFailedEventAttributes
	// 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.
	CompleteWorkflowExecutionFailedEventAttributes *CompleteWorkflowExecutionFailedEventAttributes
	// Provides the details of the LambdaFunctionTimedOut event. It isn't set for other
	// event types.
	LambdaFunctionTimedOutEventAttributes *LambdaFunctionTimedOutEventAttributes
	// Provides the details of the LambdaFunctionScheduled event. It isn't set for
	// other event types.
	LambdaFunctionScheduledEventAttributes *LambdaFunctionScheduledEventAttributes
	// 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.
	ActivityTaskFailedEventAttributes *ActivityTaskFailedEventAttributes
	// 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.
	DecisionTaskStartedEventAttributes *DecisionTaskStartedEventAttributes
	// 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.
	DecisionTaskCompletedEventAttributes *DecisionTaskCompletedEventAttributes
	// 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.
	RecordMarkerFailedEventAttributes *RecordMarkerFailedEventAttributes
	// 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.
	WorkflowExecutionTimedOutEventAttributes *WorkflowExecutionTimedOutEventAttributes
	// 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.
	DecisionTaskScheduledEventAttributes *DecisionTaskScheduledEventAttributes
	// 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.
	DecisionTaskTimedOutEventAttributes *DecisionTaskTimedOutEventAttributes
	// Provides the details of the ScheduleLambdaFunctionFailed event. It isn't set for
	// other event types.
	ScheduleLambdaFunctionFailedEventAttributes *ScheduleLambdaFunctionFailedEventAttributes
	// 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.
	StartTimerFailedEventAttributes *StartTimerFailedEventAttributes
	// 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.
	WorkflowExecutionSignaledEventAttributes *WorkflowExecutionSignaledEventAttributes
	// 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.
	TimerCanceledEventAttributes *TimerCanceledEventAttributes
	// 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.
	RequestCancelActivityTaskFailedEventAttributes *RequestCancelActivityTaskFailedEventAttributes
	// 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.
	WorkflowExecutionCanceledEventAttributes *WorkflowExecutionCanceledEventAttributes
	// 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.
	ScheduleActivityTaskFailedEventAttributes *ScheduleActivityTaskFailedEventAttributes
	// 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.
	ActivityTaskCancelRequestedEventAttributes *ActivityTaskCancelRequestedEventAttributes
	// 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.
	TimerFiredEventAttributes *TimerFiredEventAttributes
	// 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.
	ChildWorkflowExecutionTerminatedEventAttributes *ChildWorkflowExecutionTerminatedEventAttributes
	// 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.
	StartChildWorkflowExecutionFailedEventAttributes *StartChildWorkflowExecutionFailedEventAttributes
	// The type of the history event.
	EventType EventType
	// Provides the details of the LambdaFunctionFailed event. It isn't set for other
	// event types.
	LambdaFunctionFailedEventAttributes *LambdaFunctionFailedEventAttributes
	// 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.
	CancelWorkflowExecutionFailedEventAttributes *CancelWorkflowExecutionFailedEventAttributes
	// 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.
	WorkflowExecutionTerminatedEventAttributes *WorkflowExecutionTerminatedEventAttributes
	// 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.
	MarkerRecordedEventAttributes *MarkerRecordedEventAttributes
	// 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.
	StartChildWorkflowExecutionInitiatedEventAttributes *StartChildWorkflowExecutionInitiatedEventAttributes
	// 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.
	ActivityTaskStartedEventAttributes *ActivityTaskStartedEventAttributes
	// 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.
	FailWorkflowExecutionFailedEventAttributes *FailWorkflowExecutionFailedEventAttributes
	// The date and time when the event occurred.
	EventTimestamp *time.Time
	// 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.
	ExternalWorkflowExecutionCancelRequestedEventAttributes *ExternalWorkflowExecutionCancelRequestedEventAttributes
	// 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.
	ActivityTaskScheduledEventAttributes *ActivityTaskScheduledEventAttributes
	// 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.
	SignalExternalWorkflowExecutionInitiatedEventAttributes *SignalExternalWorkflowExecutionInitiatedEventAttributes
	// 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.
	ActivityTaskCompletedEventAttributes *ActivityTaskCompletedEventAttributes
	// 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.
	WorkflowExecutionCompletedEventAttributes *WorkflowExecutionCompletedEventAttributes
	// 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.
	WorkflowExecutionFailedEventAttributes *WorkflowExecutionFailedEventAttributes
	// 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.
	ChildWorkflowExecutionFailedEventAttributes *ChildWorkflowExecutionFailedEventAttributes
	// 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.
	ActivityTaskTimedOutEventAttributes *ActivityTaskTimedOutEventAttributes
}

Event within a workflow execution. A history event can be one of these types:

* ActivityTaskCancelRequested – A RequestCancelActivityTask decision was received by the system.

successfully canceled.

successfully completed an activity task by calling RespondActivityTaskCompleted ().

calling RespondActivityTaskFailed ().

task was scheduled for execution.

activity task was dispatched to a worker.

activity task timed out.

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.

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.

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 calling RespondDecisionTaskCompleted ().

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.

execution as failed, itself failed.

recorded in the workflow history as the result of a RecordMarker decision.

* RecordMarkerFailed – A RecordMarker 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.

request to signal an external workflow was made.

– 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.

decision. This happens when the decision isn't configured properly, for example a timer already exists with the specified timer Id.

timer, previously started for this workflow execution, was successfully canceled.

execution, fired.

execution due to a StartTimer decision.

– A request to cancel this workflow execution was made.

*

WorkflowExecutionCanceled – The workflow execution was successfully canceled and closed.

due to successful completion.

workflow execution was closed and a new execution of the same type was created with the same workflowId.

execution closed due to a failure.

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.

type LambdaFunctionCompletedEventAttributes

type LambdaFunctionCompletedEventAttributes struct {
	// The ID of the LambdaFunctionStarted event recorded when this activity task
	// started. To help diagnose issues, use this information to trace back the chain
	// of events leading up to this event.
	StartedEventId *int64
	// The results of the Lambda task.
	Result *string
	// The ID of the LambdaFunctionScheduled event that was recorded when this Lambda
	// task was scheduled. To help diagnose issues, use this information to trace back
	// the chain of events leading up to this event.
	ScheduledEventId *int64
}

Provides the details of the LambdaFunctionCompleted event. It isn't set for other event types.

type LambdaFunctionFailedEventAttributes

type LambdaFunctionFailedEventAttributes struct {
	// The details of the failure.
	Details *string
	// The ID of the LambdaFunctionStarted event recorded when this activity task
	// started. To help diagnose issues, use this information to trace back the chain
	// of events leading up to this event.
	StartedEventId *int64
	// The reason provided for the failure.
	Reason *string
	// The ID of the LambdaFunctionScheduled event that was recorded when this activity
	// task was scheduled. To help diagnose issues, use this information to trace back
	// the chain of events leading up to this event.
	ScheduledEventId *int64
}

Provides the details of the LambdaFunctionFailed event. It isn't set for other event types.

type LambdaFunctionScheduledEventAttributes

type LambdaFunctionScheduledEventAttributes struct {
	// The maximum amount of time a worker can take to process the Lambda task.
	StartToCloseTimeout *string
	// The input provided to the Lambda task.
	Input *string
	// Data attached to the event that the decider can use in subsequent workflow
	// tasks. This data isn't sent to the Lambda task.
	Control *string
	// The ID of the LambdaFunctionCompleted event corresponding to the decision that
	// resulted in scheduling this activity task. To help diagnose issues, use this
	// information to trace back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The unique ID of the Lambda task.
	Id *string
	// The name of the Lambda function.
	Name *string
}

Provides the details of the LambdaFunctionScheduled event. It isn't set for other event types.

type LambdaFunctionStartedEventAttributes

type LambdaFunctionStartedEventAttributes struct {
	// The ID of the LambdaFunctionScheduled event that was recorded when this activity
	// task was scheduled. To help diagnose issues, use this information to trace back
	// the chain of events leading up to this event.
	ScheduledEventId *int64
}

Provides the details of the LambdaFunctionStarted event. It isn't set for other event types.

type LambdaFunctionTimedOutEventAttributes

type LambdaFunctionTimedOutEventAttributes struct {
	// The ID of the LambdaFunctionScheduled event that was recorded when this activity
	// task was scheduled. To help diagnose issues, use this information to trace back
	// the chain of events leading up to this event.
	ScheduledEventId *int64
	// The ID of the ActivityTaskStarted event that was recorded when this activity
	// task started. To help diagnose issues, use this information to trace back the
	// chain of events leading up to this event.
	StartedEventId *int64
	// The type of the timeout that caused this event.
	TimeoutType LambdaFunctionTimeoutType
}

Provides details of the LambdaFunctionTimedOut event.

type LambdaFunctionTimeoutType

type LambdaFunctionTimeoutType string
const (
	LambdaFunctionTimeoutTypeStart_to_close LambdaFunctionTimeoutType = "START_TO_CLOSE"
)

Enum values for LambdaFunctionTimeoutType

type LimitExceededFault

type LimitExceededFault struct {
	Message *string
}

Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.

func (*LimitExceededFault) Error

func (e *LimitExceededFault) Error() string

func (*LimitExceededFault) ErrorCode

func (e *LimitExceededFault) ErrorCode() string

func (*LimitExceededFault) ErrorFault

func (e *LimitExceededFault) ErrorFault() smithy.ErrorFault

func (*LimitExceededFault) ErrorMessage

func (e *LimitExceededFault) ErrorMessage() string

func (*LimitExceededFault) GetMessage

func (e *LimitExceededFault) GetMessage() string

func (*LimitExceededFault) HasMessage

func (e *LimitExceededFault) HasMessage() bool

type MarkerRecordedEventAttributes

type MarkerRecordedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RecordMarker decision that requested this marker. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The name of the marker.
	MarkerName *string
	// The details of the marker.
	Details *string
}

Provides the details of the MarkerRecorded event.

type OperationNotPermittedFault

type OperationNotPermittedFault struct {
	Message *string
}

Returned when the caller doesn't have sufficient permissions to invoke the action.

func (*OperationNotPermittedFault) Error

func (*OperationNotPermittedFault) ErrorCode

func (e *OperationNotPermittedFault) ErrorCode() string

func (*OperationNotPermittedFault) ErrorFault

func (*OperationNotPermittedFault) ErrorMessage

func (e *OperationNotPermittedFault) ErrorMessage() string

func (*OperationNotPermittedFault) GetMessage

func (e *OperationNotPermittedFault) GetMessage() string

func (*OperationNotPermittedFault) HasMessage

func (e *OperationNotPermittedFault) HasMessage() bool

type RecordMarkerDecisionAttributes

type RecordMarkerDecisionAttributes struct {
	// The name of the marker.
	MarkerName *string
	// The details of the marker.
	Details *string
}

Provides the details of the RecordMarker decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

to only specified domains.

permission to call this action.

this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type RecordMarkerFailedCause

type RecordMarkerFailedCause string
const (
	RecordMarkerFailedCauseOperation_not_permitted RecordMarkerFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for RecordMarkerFailedCause

type RecordMarkerFailedEventAttributes

type RecordMarkerFailedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RecordMarkerFailed decision for this cancellation request.
	// This information can be useful for diagnosing problems by tracing back the chain
	// of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The marker's name.
	MarkerName *string
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause RecordMarkerFailedCause
}

Provides the details of the RecordMarkerFailed event.

type RegistrationStatus

type RegistrationStatus string
const (
	RegistrationStatusRegistered RegistrationStatus = "REGISTERED"
	RegistrationStatusDeprecated RegistrationStatus = "DEPRECATED"
)

Enum values for RegistrationStatus

type RequestCancelActivityTaskDecisionAttributes

type RequestCancelActivityTaskDecisionAttributes struct {
	// The activityId of the activity task to be canceled.
	ActivityId *string
}

Provides the details of the RequestCancelActivityTask decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

limit the action to only specified domains.

allow or deny permission to call this action.

policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type RequestCancelActivityTaskFailedCause

type RequestCancelActivityTaskFailedCause string
const (
	RequestCancelActivityTaskFailedCauseActivity_id_unknown     RequestCancelActivityTaskFailedCause = "ACTIVITY_ID_UNKNOWN"
	RequestCancelActivityTaskFailedCauseOperation_not_permitted RequestCancelActivityTaskFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for RequestCancelActivityTaskFailedCause

type RequestCancelActivityTaskFailedEventAttributes

type RequestCancelActivityTaskFailedEventAttributes struct {
	// The activityId provided in the RequestCancelActivityTask decision that failed.
	ActivityId *string
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause RequestCancelActivityTaskFailedCause
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RequestCancelActivityTask decision for this cancellation
	// request. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
}

Provides the details of the RequestCancelActivityTaskFailed event.

type RequestCancelExternalWorkflowExecutionDecisionAttributes

type RequestCancelExternalWorkflowExecutionDecisionAttributes struct {
	// The workflowId of the external workflow execution to cancel.
	WorkflowId *string
	// The data attached to the event that can be used by the decider in subsequent
	// workflow tasks.
	Control *string
	// The runId of the external workflow execution to cancel.
	RunId *string
}

Provides the details of the RequestCancelExternalWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

name to limit the action to only specified domains.

to allow or deny permission to call this action.

policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type RequestCancelExternalWorkflowExecutionFailedCause

type RequestCancelExternalWorkflowExecutionFailedCause string
const (
	RequestCancelExternalWorkflowExecutionFailedCauseUnknown_external_workflow_execution                      RequestCancelExternalWorkflowExecutionFailedCause = "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"
	RequestCancelExternalWorkflowExecutionFailedCauseRequest_cancel_external_workflow_execution_rate_exceeded RequestCancelExternalWorkflowExecutionFailedCause = "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"
	RequestCancelExternalWorkflowExecutionFailedCauseOperation_not_permitted                                  RequestCancelExternalWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for RequestCancelExternalWorkflowExecutionFailedCause

type RequestCancelExternalWorkflowExecutionFailedEventAttributes

type RequestCancelExternalWorkflowExecutionFailedEventAttributes struct {
	// The ID of the RequestCancelExternalWorkflowExecutionInitiated event
	// corresponding to the RequestCancelExternalWorkflowExecution decision to cancel
	// this external workflow execution. This information can be useful for diagnosing
	// problems by tracing back the chain of events leading up to this event.
	InitiatedEventId *int64
	// The runId of the external workflow execution.
	RunId *string
	// The workflowId of the external workflow to which the cancel request was to be
	// delivered.
	WorkflowId *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RequestCancelExternalWorkflowExecution decision for this
	// cancellation request. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The data attached to the event that the decider can use in subsequent workflow
	// tasks. This data isn't sent to the workflow execution.
	Control *string
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause RequestCancelExternalWorkflowExecutionFailedCause
}

Provides the details of the RequestCancelExternalWorkflowExecutionFailed event.

type RequestCancelExternalWorkflowExecutionInitiatedEventAttributes

type RequestCancelExternalWorkflowExecutionInitiatedEventAttributes struct {
	// The runId of the external workflow execution to be canceled.
	RunId *string
	// Data attached to the event that can be used by the decider in subsequent
	// workflow tasks.
	Control *string
	// The workflowId of the external workflow execution to be canceled.
	WorkflowId *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the RequestCancelExternalWorkflowExecution decision for this
	// cancellation request. This information can be useful for diagnosing problems by
	// tracing back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
}

Provides the details of the RequestCancelExternalWorkflowExecutionInitiated event.

type ResourceTag

type ResourceTag struct {
	// The value of a tag.
	Value *string
	// The key of a tag.
	Key *string
}

Tags are key-value pairs that can be associated with Amazon SWF state machines and activities. Tags may only contain unicode letters, digits, whitespace, or these symbols: _ . : / = + - @.

type ScheduleActivityTaskDecisionAttributes

type ScheduleActivityTaskDecisionAttributes struct {
	// The type of the activity task to schedule.
	ActivityType *ActivityType
	// If set, specifies the maximum time before which a worker processing a task of
	// this type must report progress by calling RecordActivityTaskHeartbeat (). If the
	// timeout is exceeded, the activity task is automatically timed out. If the worker
	// subsequently attempts to record a heartbeat or returns a result, it is ignored.
	// This overrides the default heartbeat timeout specified when registering the
	// activity type using RegisterActivityType (). The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	HeartbeatTimeout *string
	// The maximum duration for this activity task. The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration. A schedule-to-close timeout for this activity task must be
	// specified either as a default for the activity type or through this field. If
	// neither this field is set nor a default schedule-to-close timeout was specified
	// at registration time then a fault is returned.
	ScheduleToCloseTimeout *string
	// If set, specifies the priority with which the activity task is to be assigned to
	// a worker. This overrides the defaultTaskPriority specified when registering the
	// activity type using RegisterActivityType (). Valid values are integers that
	// range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE
	// (2147483647). Higher numbers indicate higher priority. For more information
	// about setting task priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// If set, specifies the maximum duration a worker may take to process this
	// activity task. This overrides the default start-to-close timeout specified when
	// registering the activity type using RegisterActivityType (). The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration. A start-to-close timeout for this activity task must
	// be specified either as a default for the activity type or through this field. If
	// neither this field is set nor a default start-to-close timeout was specified at
	// registration time then a fault is returned.
	StartToCloseTimeout *string
	// If set, specifies the name of the task list in which to schedule the activity
	// task. If not specified, the defaultTaskList registered with the activity type is
	// used. A task list for this activity task must be specified either as a default
	// for the activity type or through this field. If neither this field is set nor a
	// default task list was specified at registration time then a fault is returned.
	// The specified string must not start or end with whitespace. It must not contain
	// a : (colon), / (slash), | (vertical bar), or any control characters
	// (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the literal string
	// arn.
	TaskList *TaskList
	// If set, specifies the maximum duration the activity task can wait to be assigned
	// to a worker. This overrides the default schedule-to-start timeout specified when
	// registering the activity type using RegisterActivityType (). The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration. A schedule-to-start timeout for this activity task
	// must be specified either as a default for the activity type or through this
	// field. If neither this field is set nor a default schedule-to-start timeout was
	// specified at registration time then a fault is returned.
	ScheduleToStartTimeout *string
	// The input provided to the activity task.
	Input *string
	// The activityId of the activity task. The specified string must not start or end
	// with whitespace. It must not contain a : (colon), / (slash), | (vertical bar),
	// or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not
	// contain the literal string arn.
	ActivityId *string
	// Data attached to the event that can be used by the decider in subsequent
	// workflow tasks. This data isn't sent to the activity.
	Control *string
}

Provides the details of the ScheduleActivityTask decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

action to only specified domains.

permission to call this action.

using a Condition element with the appropriate keys.

*

activityType.name – String constraint. The key is swf:activityType.name.

* activityType.version – String constraint. The key is swf:activityType.version.

swf:taskList.name.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type ScheduleActivityTaskFailedCause

type ScheduleActivityTaskFailedCause string
const (
	ScheduleActivityTaskFailedCauseActivity_type_deprecated                    ScheduleActivityTaskFailedCause = "ACTIVITY_TYPE_DEPRECATED"
	ScheduleActivityTaskFailedCauseActivity_type_does_not_exist                ScheduleActivityTaskFailedCause = "ACTIVITY_TYPE_DOES_NOT_EXIST"
	ScheduleActivityTaskFailedCauseActivity_id_already_in_use                  ScheduleActivityTaskFailedCause = "ACTIVITY_ID_ALREADY_IN_USE"
	ScheduleActivityTaskFailedCauseOpen_activities_limit_exceeded              ScheduleActivityTaskFailedCause = "OPEN_ACTIVITIES_LIMIT_EXCEEDED"
	ScheduleActivityTaskFailedCauseActivity_creation_rate_exceeded             ScheduleActivityTaskFailedCause = "ACTIVITY_CREATION_RATE_EXCEEDED"
	ScheduleActivityTaskFailedCauseDefault_schedule_to_close_timeout_undefined ScheduleActivityTaskFailedCause = "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED"
	ScheduleActivityTaskFailedCauseDefault_task_list_undefined                 ScheduleActivityTaskFailedCause = "DEFAULT_TASK_LIST_UNDEFINED"
	ScheduleActivityTaskFailedCauseDefault_schedule_to_start_timeout_undefined ScheduleActivityTaskFailedCause = "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED"
	ScheduleActivityTaskFailedCauseDefault_start_to_close_timeout_undefined    ScheduleActivityTaskFailedCause = "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED"
	ScheduleActivityTaskFailedCauseDefault_heartbeat_timeout_undefined         ScheduleActivityTaskFailedCause = "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED"
	ScheduleActivityTaskFailedCauseOperation_not_permitted                     ScheduleActivityTaskFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for ScheduleActivityTaskFailedCause

type ScheduleActivityTaskFailedEventAttributes

type ScheduleActivityTaskFailedEventAttributes struct {
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause ScheduleActivityTaskFailedCause
	// The ID of the DecisionTaskCompleted event corresponding to the decision that
	// resulted in the scheduling of this activity task. This information can be useful
	// for diagnosing problems by tracing back the chain of events leading up to this
	// event.
	DecisionTaskCompletedEventId *int64
	// The activity type provided in the ScheduleActivityTask decision that failed.
	ActivityType *ActivityType
	// The activityId provided in the ScheduleActivityTask decision that failed.
	ActivityId *string
}

Provides the details of the ScheduleActivityTaskFailed event.

type ScheduleLambdaFunctionDecisionAttributes

type ScheduleLambdaFunctionDecisionAttributes struct {
	// The optional input data to be supplied to the Lambda function.
	Input *string
	// The data attached to the event that the decider can use in subsequent workflow
	// tasks. This data isn't sent to the Lambda task.
	Control *string
	// A string that identifies the Lambda function execution in the event history.
	Id *string
	// The name, or ARN, of the Lambda function to schedule.
	Name *string
	// The timeout value, in seconds, after which the Lambda function is considered to
	// be failed once it has started. This can be any integer from 1-300 (1s-5m). If no
	// value is supplied, than a default value of 300s is assumed.
	StartToCloseTimeout *string
}

Decision attributes specified in scheduleLambdaFunctionDecisionAttributes within the list of decisions decisions passed to RespondDecisionTaskCompleted ().

type ScheduleLambdaFunctionFailedCause

type ScheduleLambdaFunctionFailedCause string
const (
	ScheduleLambdaFunctionFailedCauseId_already_in_use                      ScheduleLambdaFunctionFailedCause = "ID_ALREADY_IN_USE"
	ScheduleLambdaFunctionFailedCauseOpen_lambda_functions_limit_exceeded   ScheduleLambdaFunctionFailedCause = "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED"
	ScheduleLambdaFunctionFailedCauseLambda_function_creation_rate_exceeded ScheduleLambdaFunctionFailedCause = "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED"
	ScheduleLambdaFunctionFailedCauseLambda_service_not_available_in_region ScheduleLambdaFunctionFailedCause = "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION"
)

Enum values for ScheduleLambdaFunctionFailedCause

type ScheduleLambdaFunctionFailedEventAttributes

type ScheduleLambdaFunctionFailedEventAttributes struct {
	// The ID of the LambdaFunctionCompleted event corresponding to the decision that
	// resulted in scheduling this Lambda task. To help diagnose issues, use this
	// information to trace back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The cause of the failure. To help diagnose issues, use this information to trace
	// back the chain of events leading up to this event. If cause is set to
	// OPERATION_NOT_PERMITTED, the decision failed because it lacked sufficient
	// permissions. For details and example IAM policies, see Using IAM to Manage
	// Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause ScheduleLambdaFunctionFailedCause
	// The ID provided in the ScheduleLambdaFunction decision that failed.
	Id *string
	// The name of the Lambda function.
	Name *string
}

Provides the details of the ScheduleLambdaFunctionFailed event. It isn't set for other event types.

type SignalExternalWorkflowExecutionDecisionAttributes

type SignalExternalWorkflowExecutionDecisionAttributes struct {
	// The workflowId of the workflow execution to be signaled.
	WorkflowId *string
	// The runId of the workflow execution to be signaled.
	RunId *string
	// The data attached to the event that can be used by the decider in subsequent
	// decision tasks.
	Control *string
	// The input data to be provided with the signal. The target workflow execution
	// uses the signal name and input data to process the signal.
	Input *string
	// The name of the signal.The target workflow execution uses the signal name and
	// input to process the signal.
	SignalName *string
}

Provides the details of the SignalExternalWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

limit the action to only specified domains.

allow or deny permission to call this action.

policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type SignalExternalWorkflowExecutionFailedCause

type SignalExternalWorkflowExecutionFailedCause string
const (
	SignalExternalWorkflowExecutionFailedCauseUnknown_external_workflow_execution              SignalExternalWorkflowExecutionFailedCause = "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION"
	SignalExternalWorkflowExecutionFailedCauseSignal_external_workflow_execution_rate_exceeded SignalExternalWorkflowExecutionFailedCause = "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED"
	SignalExternalWorkflowExecutionFailedCauseOperation_not_permitted                          SignalExternalWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for SignalExternalWorkflowExecutionFailedCause

type SignalExternalWorkflowExecutionFailedEventAttributes

type SignalExternalWorkflowExecutionFailedEventAttributes struct {
	// The data attached to the event that the decider can use in subsequent workflow
	// tasks. This data isn't sent to the workflow execution.
	Control *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the SignalExternalWorkflowExecution decision for this signal.
	// This information can be useful for diagnosing problems by tracing back the chain
	// of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The runId of the external workflow execution that the signal was being delivered
	// to.
	RunId *string
	// The workflowId of the external workflow execution that the signal was being
	// delivered to.
	WorkflowId *string
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause SignalExternalWorkflowExecutionFailedCause
	// The ID of the SignalExternalWorkflowExecutionInitiated event corresponding to
	// the SignalExternalWorkflowExecution decision to request this signal. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	InitiatedEventId *int64
}

Provides the details of the SignalExternalWorkflowExecutionFailed event.

type SignalExternalWorkflowExecutionInitiatedEventAttributes

type SignalExternalWorkflowExecutionInitiatedEventAttributes struct {
	// The runId of the external workflow execution to send the signal to.
	RunId *string
	// Data attached to the event that can be used by the decider in subsequent
	// decision tasks.
	Control *string
	// The input provided to the signal.
	Input *string
	// The name of the signal.
	SignalName *string
	// The workflowId of the external workflow execution.
	WorkflowId *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the SignalExternalWorkflowExecution decision for this signal.
	// This information can be useful for diagnosing problems by tracing back the chain
	// of events leading up to this event.
	DecisionTaskCompletedEventId *int64
}

Provides the details of the SignalExternalWorkflowExecutionInitiated event.

type StartChildWorkflowExecutionDecisionAttributes

type StartChildWorkflowExecutionDecisionAttributes struct {
	// Specifies the maximum duration of decision tasks for this workflow execution.
	// This parameter overrides the defaultTaskStartToCloseTimout specified when
	// registering the workflow type using RegisterWorkflowType (). The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration. A task start-to-close timeout for this workflow
	// execution must be specified either as a default for the workflow type or through
	// this parameter. If neither this parameter is set nor a default task
	// start-to-close timeout was specified at registration time then a fault is
	// returned.
	TaskStartToCloseTimeout *string
	// The type of the workflow execution to be started.
	WorkflowType *WorkflowType
	// The data attached to the event that can be used by the decider in subsequent
	// workflow tasks. This data isn't sent to the child workflow execution.
	Control *string
	// A task priority that, if set, specifies the priority for a decision task of this
	// workflow execution. This overrides the defaultTaskPriority specified when
	// registering the workflow type. Valid values are integers that range from Java's
	// Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher
	// numbers indicate higher priority. For more information about setting task
	// priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// The total duration for this workflow execution. This overrides the
	// defaultExecutionStartToCloseTimeout specified when registering the workflow
	// type. The duration is specified in seconds, an integer greater than or equal to
	// 0. You can use NONE to specify unlimited duration. An execution start-to-close
	// timeout for this workflow execution must be specified either as a default for
	// the workflow type or through this parameter. If neither this parameter is set
	// nor a default execution start-to-close timeout was specified at registration
	// time then a fault is returned.
	ExecutionStartToCloseTimeout *string
	// The name of the task list to be used for decision tasks of the child workflow
	// execution. A task list for this workflow execution must be specified either as a
	// default for the workflow type or through this parameter. If neither this
	// parameter is set nor a default task list was specified at registration time then
	// a fault is returned. The specified string must not start or end with whitespace.
	// It must not contain a : (colon), / (slash), | (vertical bar), or any control
	// characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain the
	// literal string arn.
	TaskList *TaskList
	// The workflowId of the workflow execution. The specified string must not start or
	// end with whitespace. It must not contain a : (colon), / (slash), | (vertical
	// bar), or any control characters (\u0000-\u001f | \u007f-\u009f). Also, it must
	// not contain the literal string arn.
	WorkflowId *string
	// The IAM role attached to the child workflow execution.
	LambdaRole *string
	// The input to be provided to the workflow execution.
	Input *string
	// The list of tags to associate with the child workflow execution. A maximum of 5
	// tags can be specified. You can list workflow executions with a specific tag by
	// calling ListOpenWorkflowExecutions () or ListClosedWorkflowExecutions () and
	// specifying a TagFilter ().
	TagList []*string
	// If set, specifies the policy to use for the child workflow executions if the
	// workflow execution being started is terminated by calling the
	// TerminateWorkflowExecution () action explicitly or due to an expired timeout.
	// This policy overrides the default child policy specified when registering the
	// workflow type using RegisterWorkflowType (). The supported child policies are:
	//
	//
	// * TERMINATE – The child executions are terminated.
	//
	//     * REQUEST_CANCEL – A
	// request to cancel is attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	//
	// A child policy for this workflow execution must be specified either as a
	// default for the workflow type or through this parameter. If neither this
	// parameter is set nor a default child policy was specified at registration time
	// then a fault is returned.
	ChildPolicy ChildPolicy
}

Provides the details of the StartChildWorkflowExecution decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

limit the action to only specified domains.

allow or deny permission to call this action.

parameters by using a Condition element with the appropriate keys.

*

tagList.member.N – The key is "swf:tagList.N" where N is the tag number from 0 to 4, inclusive.

swf:taskList.name.

swf:workflowType.name.

key is swf:workflowType.version.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type StartChildWorkflowExecutionFailedCause

type StartChildWorkflowExecutionFailedCause string
const (
	StartChildWorkflowExecutionFailedCauseWorkflow_type_does_not_exist                       StartChildWorkflowExecutionFailedCause = "WORKFLOW_TYPE_DOES_NOT_EXIST"
	StartChildWorkflowExecutionFailedCauseWorkflow_type_deprecated                           StartChildWorkflowExecutionFailedCause = "WORKFLOW_TYPE_DEPRECATED"
	StartChildWorkflowExecutionFailedCauseOpen_children_limit_exceeded                       StartChildWorkflowExecutionFailedCause = "OPEN_CHILDREN_LIMIT_EXCEEDED"
	StartChildWorkflowExecutionFailedCauseOpen_workflows_limit_exceeded                      StartChildWorkflowExecutionFailedCause = "OPEN_WORKFLOWS_LIMIT_EXCEEDED"
	StartChildWorkflowExecutionFailedCauseChild_creation_rate_exceeded                       StartChildWorkflowExecutionFailedCause = "CHILD_CREATION_RATE_EXCEEDED"
	StartChildWorkflowExecutionFailedCauseWorkflow_already_running                           StartChildWorkflowExecutionFailedCause = "WORKFLOW_ALREADY_RUNNING"
	StartChildWorkflowExecutionFailedCauseDefault_execution_start_to_close_timeout_undefined StartChildWorkflowExecutionFailedCause = "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED"
	StartChildWorkflowExecutionFailedCauseDefault_task_list_undefined                        StartChildWorkflowExecutionFailedCause = "DEFAULT_TASK_LIST_UNDEFINED"
	StartChildWorkflowExecutionFailedCauseDefault_task_start_to_close_timeout_undefined      StartChildWorkflowExecutionFailedCause = "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED"
	StartChildWorkflowExecutionFailedCauseDefault_child_policy_undefined                     StartChildWorkflowExecutionFailedCause = "DEFAULT_CHILD_POLICY_UNDEFINED"
	StartChildWorkflowExecutionFailedCauseOperation_not_permitted                            StartChildWorkflowExecutionFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for StartChildWorkflowExecutionFailedCause

type StartChildWorkflowExecutionFailedEventAttributes

type StartChildWorkflowExecutionFailedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the StartChildWorkflowExecutionDecision () to request this
	// child workflow execution. This information can be useful for diagnosing problems
	// by tracing back the chain of events.
	DecisionTaskCompletedEventId *int64
	// The workflowId of the child workflow execution.
	WorkflowId *string
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. When cause is set to OPERATION_NOT_PERMITTED,
	// the decision fails because it lacks sufficient permissions. For details and
	// example IAM policies, see  Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause StartChildWorkflowExecutionFailedCause
	// When the cause is WORKFLOW_ALREADY_RUNNING, initiatedEventId is the ID of the
	// StartChildWorkflowExecutionInitiated event that corresponds to the
	// StartChildWorkflowExecutionDecision () to start the workflow execution. You can
	// use this information to diagnose problems by tracing back the chain of events
	// leading up to this event. When the cause isn't WORKFLOW_ALREADY_RUNNING,
	// initiatedEventId is set to 0 because the StartChildWorkflowExecutionInitiated
	// event doesn't exist.
	InitiatedEventId *int64
	// The data attached to the event that the decider can use in subsequent workflow
	// tasks. This data isn't sent to the child workflow execution.
	Control *string
	// The workflow type provided in the StartChildWorkflowExecutionDecision () that
	// failed.
	WorkflowType *WorkflowType
}

Provides the details of the StartChildWorkflowExecutionFailed event.

type StartChildWorkflowExecutionInitiatedEventAttributes

type StartChildWorkflowExecutionInitiatedEventAttributes struct {
	// The list of tags to associated with the child workflow execution.
	TagList []*string
	// The inputs provided to the child workflow execution.
	Input *string
	// The IAM role to attach to the child workflow execution.
	LambdaRole *string
	// The maximum duration for the child workflow execution. If the workflow execution
	// isn't closed within this duration, it is timed out and force-terminated. The
	// duration is specified in seconds, an integer greater than or equal to 0. You can
	// use NONE to specify unlimited duration.
	ExecutionStartToCloseTimeout *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the StartChildWorkflowExecutionDecision () to request this
	// child workflow execution. This information can be useful for diagnosing problems
	// by tracing back the cause of events.
	DecisionTaskCompletedEventId *int64
	// The workflowId of the child workflow execution.
	WorkflowId *string
	// The priority assigned for the decision tasks for this workflow execution. Valid
	// values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to
	// Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority. For
	// more information about setting task priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// Data attached to the event that can be used by the decider in subsequent
	// decision tasks. This data isn't sent to the activity.
	Control *string
	// The name of the task list used for the decision tasks of the child workflow
	// execution.
	TaskList *TaskList
	// The type of the child workflow execution.
	WorkflowType *WorkflowType
	// The maximum duration allowed for the decision tasks for this workflow execution.
	// The duration is specified in seconds, an integer greater than or equal to 0. You
	// can use NONE to specify unlimited duration.
	TaskStartToCloseTimeout *string
	// The policy to use for the child workflow executions if this execution gets
	// terminated by explicitly calling the TerminateWorkflowExecution () action or due
	// to an expired timeout. The supported child policies are:
	//
	//     * TERMINATE – The
	// child executions are terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel is
	// attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	ChildPolicy ChildPolicy
}

Provides the details of the StartChildWorkflowExecutionInitiated event.

type StartLambdaFunctionFailedCause

type StartLambdaFunctionFailedCause string
const (
	StartLambdaFunctionFailedCauseAssume_role_failed StartLambdaFunctionFailedCause = "ASSUME_ROLE_FAILED"
)

Enum values for StartLambdaFunctionFailedCause

type StartLambdaFunctionFailedEventAttributes

type StartLambdaFunctionFailedEventAttributes struct {
	// The ID of the ActivityTaskScheduled event that was recorded when this activity
	// task was scheduled. To help diagnose issues, use this information to trace back
	// the chain of events leading up to this event.
	ScheduledEventId *int64
	// A description that can help diagnose the cause of the fault.
	Message *string
	// The cause of the failure. To help diagnose issues, use this information to trace
	// back the chain of events leading up to this event. If cause is set to
	// OPERATION_NOT_PERMITTED, the decision failed because the IAM role attached to
	// the execution lacked sufficient permissions. For details and example IAM
	// policies, see Lambda Tasks
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/lambda-task.html)
	// in the Amazon SWF Developer Guide.
	Cause StartLambdaFunctionFailedCause
}

Provides the details of the StartLambdaFunctionFailed event. It isn't set for other event types.

type StartTimerDecisionAttributes

type StartTimerDecisionAttributes struct {
	// The unique ID of the timer. The specified string must not start or end with
	// whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any
	// control characters (\u0000-\u001f | \u007f-\u009f). Also, it must not contain
	// the literal string arn.
	TimerId *string
	// The duration to wait before firing the timer. The duration is specified in
	// seconds, an integer greater than or equal to 0.
	StartToFireTimeout *string
	// The data attached to the event that can be used by the decider in subsequent
	// workflow tasks.
	Control *string
}

Provides the details of the StartTimer decision. Access Control You can use IAM policies to control this decision's access to Amazon SWF resources as follows:

* Use a Resource element with the domain name to limit the action to only specified domains.

call this action.

parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html) in the Amazon SWF Developer Guide.

type StartTimerFailedCause

type StartTimerFailedCause string
const (
	StartTimerFailedCauseTimer_id_already_in_use      StartTimerFailedCause = "TIMER_ID_ALREADY_IN_USE"
	StartTimerFailedCauseOpen_timers_limit_exceeded   StartTimerFailedCause = "OPEN_TIMERS_LIMIT_EXCEEDED"
	StartTimerFailedCauseTimer_creation_rate_exceeded StartTimerFailedCause = "TIMER_CREATION_RATE_EXCEEDED"
	StartTimerFailedCauseOperation_not_permitted      StartTimerFailedCause = "OPERATION_NOT_PERMITTED"
)

Enum values for StartTimerFailedCause

type StartTimerFailedEventAttributes

type StartTimerFailedEventAttributes struct {
	// The timerId provided in the StartTimer decision that failed.
	TimerId *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the StartTimer decision for this activity task. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The cause of the failure. This information is generated by the system and can be
	// useful for diagnostic purposes. If cause is set to OPERATION_NOT_PERMITTED, the
	// decision failed because it lacked sufficient permissions. For details and
	// example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/swf-dev-iam.html)
	// in the Amazon SWF Developer Guide.
	Cause StartTimerFailedCause
}

Provides the details of the StartTimerFailed event.

type TagFilter

type TagFilter struct {
	// Specifies the tag that must be associated with the execution for it to meet the
	// filter criteria. Tags may only contain unicode letters, digits, whitespace, or
	// these symbols: _ . : / = + - @.
	Tag *string
}

Used to filter the workflow executions in visibility APIs based on a tag.

type TaskList

type TaskList struct {
	// The name of the task list.
	Name *string
}

Represents a task list.

type TimerCanceledEventAttributes

type TimerCanceledEventAttributes struct {
	// The ID of the TimerStarted event that was recorded when this timer was started.
	// This information can be useful for diagnosing problems by tracing back the chain
	// of events leading up to this event.
	StartedEventId *int64
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CancelTimer decision to cancel this timer. This information
	// can be useful for diagnosing problems by tracing back the chain of events
	// leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The unique ID of the timer that was canceled.
	TimerId *string
}

Provides the details of the TimerCanceled event.

type TimerFiredEventAttributes

type TimerFiredEventAttributes struct {
	// The unique ID of the timer that fired.
	TimerId *string
	// The ID of the TimerStarted event that was recorded when this timer was started.
	// This information can be useful for diagnosing problems by tracing back the chain
	// of events leading up to this event.
	StartedEventId *int64
}

Provides the details of the TimerFired event.

type TimerStartedEventAttributes

type TimerStartedEventAttributes struct {
	// Data attached to the event that can be used by the decider in subsequent
	// workflow tasks.
	Control *string
	// The unique ID of the timer that was started.
	TimerId *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the StartTimer decision for this activity task. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The duration of time after which the timer fires. The duration is specified in
	// seconds, an integer greater than or equal to 0.
	StartToFireTimeout *string
}

Provides the details of the TimerStarted event.

type TooManyTagsFault

type TooManyTagsFault struct {
	Message *string
}

You've exceeded the number of tags allowed for a domain.

func (*TooManyTagsFault) Error

func (e *TooManyTagsFault) Error() string

func (*TooManyTagsFault) ErrorCode

func (e *TooManyTagsFault) ErrorCode() string

func (*TooManyTagsFault) ErrorFault

func (e *TooManyTagsFault) ErrorFault() smithy.ErrorFault

func (*TooManyTagsFault) ErrorMessage

func (e *TooManyTagsFault) ErrorMessage() string

func (*TooManyTagsFault) GetMessage

func (e *TooManyTagsFault) GetMessage() string

func (*TooManyTagsFault) HasMessage

func (e *TooManyTagsFault) HasMessage() bool

type TypeAlreadyExistsFault

type TypeAlreadyExistsFault struct {
	Message *string
}

Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.

func (*TypeAlreadyExistsFault) Error

func (e *TypeAlreadyExistsFault) Error() string

func (*TypeAlreadyExistsFault) ErrorCode

func (e *TypeAlreadyExistsFault) ErrorCode() string

func (*TypeAlreadyExistsFault) ErrorFault

func (e *TypeAlreadyExistsFault) ErrorFault() smithy.ErrorFault

func (*TypeAlreadyExistsFault) ErrorMessage

func (e *TypeAlreadyExistsFault) ErrorMessage() string

func (*TypeAlreadyExistsFault) GetMessage

func (e *TypeAlreadyExistsFault) GetMessage() string

func (*TypeAlreadyExistsFault) HasMessage

func (e *TypeAlreadyExistsFault) HasMessage() bool

type TypeDeprecatedFault

type TypeDeprecatedFault struct {
	Message *string
}

Returned when the specified activity or workflow type was already deprecated.

func (*TypeDeprecatedFault) Error

func (e *TypeDeprecatedFault) Error() string

func (*TypeDeprecatedFault) ErrorCode

func (e *TypeDeprecatedFault) ErrorCode() string

func (*TypeDeprecatedFault) ErrorFault

func (e *TypeDeprecatedFault) ErrorFault() smithy.ErrorFault

func (*TypeDeprecatedFault) ErrorMessage

func (e *TypeDeprecatedFault) ErrorMessage() string

func (*TypeDeprecatedFault) GetMessage

func (e *TypeDeprecatedFault) GetMessage() string

func (*TypeDeprecatedFault) HasMessage

func (e *TypeDeprecatedFault) HasMessage() bool

type UnknownResourceFault

type UnknownResourceFault struct {
	Message *string
}

Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.

func (*UnknownResourceFault) Error

func (e *UnknownResourceFault) Error() string

func (*UnknownResourceFault) ErrorCode

func (e *UnknownResourceFault) ErrorCode() string

func (*UnknownResourceFault) ErrorFault

func (e *UnknownResourceFault) ErrorFault() smithy.ErrorFault

func (*UnknownResourceFault) ErrorMessage

func (e *UnknownResourceFault) ErrorMessage() string

func (*UnknownResourceFault) GetMessage

func (e *UnknownResourceFault) GetMessage() string

func (*UnknownResourceFault) HasMessage

func (e *UnknownResourceFault) HasMessage() bool

type WorkflowExecution

type WorkflowExecution struct {
	// A system-generated unique identifier for the workflow execution.
	RunId *string
	// The user defined identifier associated with the workflow execution.
	WorkflowId *string
}

Represents a workflow execution.

type WorkflowExecutionAlreadyStartedFault

type WorkflowExecutionAlreadyStartedFault struct {
	Message *string
}

Returned by StartWorkflowExecution () when an open execution with the same workflowId is already running in the specified domain.

func (*WorkflowExecutionAlreadyStartedFault) Error

func (*WorkflowExecutionAlreadyStartedFault) ErrorCode

func (*WorkflowExecutionAlreadyStartedFault) ErrorFault

func (*WorkflowExecutionAlreadyStartedFault) ErrorMessage

func (e *WorkflowExecutionAlreadyStartedFault) ErrorMessage() string

func (*WorkflowExecutionAlreadyStartedFault) GetMessage

func (*WorkflowExecutionAlreadyStartedFault) HasMessage

type WorkflowExecutionCancelRequestedCause

type WorkflowExecutionCancelRequestedCause string
const (
	WorkflowExecutionCancelRequestedCauseChild_policy_applied WorkflowExecutionCancelRequestedCause = "CHILD_POLICY_APPLIED"
)

Enum values for WorkflowExecutionCancelRequestedCause

type WorkflowExecutionCancelRequestedEventAttributes

type WorkflowExecutionCancelRequestedEventAttributes struct {
	// 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.
	ExternalInitiatedEventId *int64
	// The external workflow execution for which the cancellation was requested.
	ExternalWorkflowExecution *WorkflowExecution
	// 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.
	Cause WorkflowExecutionCancelRequestedCause
}

Provides the details of the WorkflowExecutionCancelRequested event.

type WorkflowExecutionCanceledEventAttributes

type WorkflowExecutionCanceledEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CancelWorkflowExecution decision for this cancellation
	// request. This information can be useful for diagnosing problems by tracing back
	// the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The details of the cancellation.
	Details *string
}

Provides the details of the WorkflowExecutionCanceled event.

type WorkflowExecutionCompletedEventAttributes

type WorkflowExecutionCompletedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the CompleteWorkflowExecution decision to complete this
	// execution. This information can be useful for diagnosing problems by tracing
	// back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The result produced by the workflow execution upon successful completion.
	Result *string
}

Provides the details of the WorkflowExecutionCompleted event.

type WorkflowExecutionConfiguration

type WorkflowExecutionConfiguration struct {
	// The policy to use for the child workflow executions if this workflow execution
	// is terminated, by calling the TerminateWorkflowExecution () action explicitly or
	// due to an expired timeout. The supported child policies are:
	//
	//     * TERMINATE –
	// The child executions are terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel
	// is attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	ChildPolicy ChildPolicy
	// The IAM role attached to the child workflow execution.
	LambdaRole *string
	// The maximum duration allowed for decision tasks for this workflow execution. The
	// duration is specified in seconds, an integer greater than or equal to 0. You can
	// use NONE to specify unlimited duration.
	TaskStartToCloseTimeout *string
	// The priority assigned to decision tasks for this workflow execution. Valid
	// values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to
	// Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority. For
	// more information about setting task priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	TaskPriority *string
	// The task list used for the decision tasks generated for this workflow execution.
	TaskList *TaskList
	// The total duration for this workflow execution. The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	ExecutionStartToCloseTimeout *string
}

The configuration settings for a workflow execution including timeout values, tasklist etc. These configuration settings are determined from the defaults specified when registering the workflow type and those specified when starting the workflow execution.

type WorkflowExecutionContinuedAsNewEventAttributes

type WorkflowExecutionContinuedAsNewEventAttributes struct {
	// The policy to use for the child workflow executions of the new execution if it
	// is terminated by calling the TerminateWorkflowExecution () action explicitly or
	// due to an expired timeout. The supported child policies are:
	//
	//     * TERMINATE –
	// The child executions are terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel
	// is attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	ChildPolicy ChildPolicy
	// The workflow type of this execution.
	WorkflowType *WorkflowType
	// The maximum duration of decision tasks for the new workflow execution. The
	// duration is specified in seconds, an integer greater than or equal to 0. You can
	// use NONE to specify unlimited duration.
	TaskStartToCloseTimeout *string
	// The priority of the task to use for the decisions of the new (continued)
	// workflow execution.
	TaskPriority *string
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the ContinueAsNewWorkflowExecution decision that started this
	// execution. This information can be useful for diagnosing problems by tracing
	// back the chain of events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The input provided to the new workflow execution.
	Input *string
	// The IAM role to attach to the new (continued) workflow execution.
	LambdaRole *string
	// The total duration allowed for the new workflow execution. The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration.
	ExecutionStartToCloseTimeout *string
	// The runId of the new workflow execution.
	NewExecutionRunId *string
	// The task list to use for the decisions of the new (continued) workflow
	// execution.
	TaskList *TaskList
	// The list of tags associated with the new workflow execution.
	TagList []*string
}

Provides the details of the WorkflowExecutionContinuedAsNew event.

type WorkflowExecutionFailedEventAttributes

type WorkflowExecutionFailedEventAttributes struct {
	// The ID of the DecisionTaskCompleted event corresponding to the decision task
	// that resulted in the FailWorkflowExecution decision to fail this execution. This
	// information can be useful for diagnosing problems by tracing back the chain of
	// events leading up to this event.
	DecisionTaskCompletedEventId *int64
	// The details of the failure.
	Details *string
	// The descriptive reason provided for the failure.
	Reason *string
}

Provides the details of the WorkflowExecutionFailed event.

type WorkflowExecutionFilter

type WorkflowExecutionFilter struct {
	// The workflowId to pass of match the criteria of this filter.
	WorkflowId *string
}

Used to filter the workflow executions in visibility APIs by their workflowId.

type WorkflowExecutionInfo

type WorkflowExecutionInfo struct {
	// If the execution status is closed then this specifies how the execution was
	// closed:
	//
	//     * COMPLETED – the execution was successfully completed.
	//
	//     *
	// CANCELED – the execution was canceled.Cancellation allows the implementation to
	// gracefully clean up before the execution is closed.
	//
	//     * TERMINATED – the
	// execution was force terminated.
	//
	//     * FAILED – the execution failed to
	// complete.
	//
	//     * TIMED_OUT – the execution did not complete in the alloted time
	// and was automatically timed out.
	//
	//     * CONTINUED_AS_NEW – the execution is
	// logically continued. This means the current execution was completed and a new
	// execution was started to carry on the workflow.
	CloseStatus CloseStatus
	// If this workflow execution is a child of another execution then contains the
	// workflow execution that started this execution.
	Parent *WorkflowExecution
	// The current status of the execution.
	ExecutionStatus ExecutionStatus
	// The type of the workflow execution.
	WorkflowType *WorkflowType
	// Set to true if a cancellation is requested for this workflow execution.
	CancelRequested *bool
	// The time when the execution was started.
	StartTimestamp *time.Time
	// The workflow execution this information is about.
	Execution *WorkflowExecution
	// The list of tags associated with the workflow execution. Tags can be used to
	// identify and list workflow executions of interest through the visibility APIs. A
	// workflow execution can have a maximum of 5 tags.
	TagList []*string
	// The time when the workflow execution was closed. Set only if the execution
	// status is CLOSED.
	CloseTimestamp *time.Time
}

Contains information about a workflow execution.

type WorkflowExecutionOpenCounts

type WorkflowExecutionOpenCounts struct {
	// The count of timers started by this workflow execution that have not fired yet.
	OpenTimers *int32
	// The count of activity tasks whose status is OPEN.
	OpenActivityTasks *int32
	// The count of Lambda tasks whose status is OPEN.
	OpenLambdaFunctions *int32
	// The count of decision tasks whose status is OPEN. A workflow execution can have
	// at most one open decision task.
	OpenDecisionTasks *int32
	// The count of child workflow executions whose status is OPEN.
	OpenChildWorkflowExecutions *int32
}

Contains the counts of open tasks, child workflow executions and timers for a workflow execution.

type WorkflowExecutionSignaledEventAttributes

type WorkflowExecutionSignaledEventAttributes struct {
	// The ID of the SignalExternalWorkflowExecutionInitiated event corresponding to
	// the SignalExternalWorkflow decision to signal 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. This field is set only if the signal was
	// initiated by another workflow execution.
	ExternalInitiatedEventId *int64
	// The workflow execution that sent the signal. This is set only of the signal was
	// sent by another workflow execution.
	ExternalWorkflowExecution *WorkflowExecution
	// The name of the signal received. The decider can use the signal name and inputs
	// to determine how to the process the signal.
	SignalName *string
	// The inputs provided with the signal. The decider can use the signal name and
	// inputs to determine how to process the signal.
	Input *string
}

Provides the details of the WorkflowExecutionSignaled event.

type WorkflowExecutionStartedEventAttributes

type WorkflowExecutionStartedEventAttributes struct {
	// The IAM role attached to the workflow execution.
	LambdaRole *string
	// If this workflow execution was started due to a ContinueAsNewWorkflowExecution
	// decision, then it contains the runId of the previous workflow execution that was
	// closed and continued as this execution.
	ContinuedExecutionRunId *string
	// The input provided to the workflow execution.
	Input *string
	// The policy to use for the child workflow executions if this workflow execution
	// is terminated, by calling the TerminateWorkflowExecution () action explicitly or
	// due to an expired timeout. The supported child policies are:
	//
	//     * TERMINATE –
	// The child executions are terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel
	// is attempted for each child execution by recording a
	// WorkflowExecutionCancelRequested event in its history. It is up to the decider
	// to take appropriate actions when it receives an execution history with this
	// event.
	//
	//     * ABANDON – No action is taken. The child executions continue to
	// run.
	ChildPolicy ChildPolicy
	// The priority of the decision tasks in the workflow execution.
	TaskPriority *string
	// The maximum duration of decision tasks for this workflow type. The duration is
	// specified in seconds, an integer greater than or equal to 0. You can use NONE to
	// specify unlimited duration.
	TaskStartToCloseTimeout *string
	// The source workflow execution that started this workflow execution. The member
	// isn't set if the workflow execution was not started by a workflow.
	ParentWorkflowExecution *WorkflowExecution
	// The name of the task list for scheduling the decision tasks for this workflow
	// execution.
	TaskList *TaskList
	// The workflow type of this execution.
	WorkflowType *WorkflowType
	// The maximum duration for this workflow execution. The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	ExecutionStartToCloseTimeout *string
	// The ID of the StartChildWorkflowExecutionInitiated event corresponding to the
	// StartChildWorkflowExecutionDecision () to start 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.
	ParentInitiatedEventId *int64
	// The list of tags associated with this workflow execution. An execution can have
	// up to 5 tags.
	TagList []*string
}

Provides details of WorkflowExecutionStarted event.

type WorkflowExecutionTerminatedCause

type WorkflowExecutionTerminatedCause string
const (
	WorkflowExecutionTerminatedCauseChild_policy_applied WorkflowExecutionTerminatedCause = "CHILD_POLICY_APPLIED"
	WorkflowExecutionTerminatedCauseEvent_limit_exceeded WorkflowExecutionTerminatedCause = "EVENT_LIMIT_EXCEEDED"
	WorkflowExecutionTerminatedCauseOperator_initiated   WorkflowExecutionTerminatedCause = "OPERATOR_INITIATED"
)

Enum values for WorkflowExecutionTerminatedCause

type WorkflowExecutionTerminatedEventAttributes

type WorkflowExecutionTerminatedEventAttributes struct {
	// The policy used for the child workflow executions of this workflow execution.
	// The supported child policies are:
	//
	//     * TERMINATE – The child executions are
	// terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel is attempted for each
	// child execution by recording a WorkflowExecutionCancelRequested event in its
	// history. It is up to the decider to take appropriate actions when it receives an
	// execution history with this event.
	//
	//     * ABANDON – No action is taken. The
	// child executions continue to run.
	ChildPolicy ChildPolicy
	// If set, indicates that the workflow execution was automatically terminated, and
	// specifies the cause. This happens if the parent workflow execution times out or
	// is terminated and the child policy is set to terminate child executions.
	Cause WorkflowExecutionTerminatedCause
	// The reason provided for the termination.
	Reason *string
	// The details provided for the termination.
	Details *string
}

Provides the details of the WorkflowExecutionTerminated event.

type WorkflowExecutionTimedOutEventAttributes

type WorkflowExecutionTimedOutEventAttributes struct {
	// The type of timeout that caused this event.
	TimeoutType WorkflowExecutionTimeoutType
	// The policy used for the child workflow executions of this workflow execution.
	// The supported child policies are:
	//
	//     * TERMINATE – The child executions are
	// terminated.
	//
	//     * REQUEST_CANCEL – A request to cancel is attempted for each
	// child execution by recording a WorkflowExecutionCancelRequested event in its
	// history. It is up to the decider to take appropriate actions when it receives an
	// execution history with this event.
	//
	//     * ABANDON – No action is taken. The
	// child executions continue to run.
	ChildPolicy ChildPolicy
}

Provides the details of the WorkflowExecutionTimedOut event.

type WorkflowExecutionTimeoutType

type WorkflowExecutionTimeoutType string
const (
	WorkflowExecutionTimeoutTypeStart_to_close WorkflowExecutionTimeoutType = "START_TO_CLOSE"
)

Enum values for WorkflowExecutionTimeoutType

type WorkflowType

type WorkflowType struct {
	// The version of the workflow type. The combination of workflow type name and
	// version must be unique with in a domain.
	Version *string
	// The name of the workflow type. The combination of workflow type name and version
	// must be unique with in a domain.
	Name *string
}

Represents a workflow type.

type WorkflowTypeConfiguration

type WorkflowTypeConfiguration struct {
	// The default maximum duration, specified when registering the workflow type, that
	// a decision task for executions of this workflow type might take before returning
	// completion or failure. If the task doesn'tdo close in the specified time then
	// the task is automatically timed out and rescheduled. If the decider eventually
	// reports a completion or failure, it is ignored. This default can be overridden
	// when starting a workflow execution using the StartWorkflowExecution () action or
	// the StartChildWorkflowExecutionDecision (). The duration is specified in
	// seconds, an integer greater than or equal to 0. You can use NONE to specify
	// unlimited duration.
	DefaultTaskStartToCloseTimeout *string
	// The default maximum duration, specified when registering the workflow type, for
	// executions of this workflow type. This default can be overridden when starting a
	// workflow execution using the StartWorkflowExecution () action or the
	// StartChildWorkflowExecutionDecision (). The duration is specified in seconds, an
	// integer greater than or equal to 0. You can use NONE to specify unlimited
	// duration.
	DefaultExecutionStartToCloseTimeout *string
	// The default IAM role attached to this workflow type. Executions of this workflow
	// type need IAM roles to invoke Lambda functions. If you don't specify an IAM role
	// when starting this workflow type, the default Lambda role is attached to the
	// execution. For more information, see
	// https://docs.aws.amazon.com/amazonswf/latest/developerguide/lambda-task.html
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/lambda-task.html)
	// in the Amazon SWF Developer Guide.
	DefaultLambdaRole *string
	// The default policy to use for the child workflow executions when a workflow
	// execution of this type is terminated, by calling the TerminateWorkflowExecution
	// () action explicitly or due to an expired timeout. This default can be
	// overridden when starting a workflow execution using the StartWorkflowExecution
	// () action or the StartChildWorkflowExecutionDecision (). The supported child
	// policies are:
	//
	//     * TERMINATE – The child executions are terminated.
	//
	//     *
	// REQUEST_CANCEL – A request to cancel is attempted for each child execution by
	// recording a WorkflowExecutionCancelRequested event in its history. It is up to
	// the decider to take appropriate actions when it receives an execution history
	// with this event.
	//
	//     * ABANDON – No action is taken. The child executions
	// continue to run.
	DefaultChildPolicy ChildPolicy
	// The default task list, specified when registering the workflow type, for
	// decisions tasks scheduled for workflow executions of this type. This default can
	// be overridden when starting a workflow execution using the
	// StartWorkflowExecution () action or the StartChildWorkflowExecutionDecision ().
	DefaultTaskList *TaskList
	// The default task priority, specified when registering the workflow type, for all
	// decision tasks of this workflow type. This default can be overridden when
	// starting a workflow execution using the StartWorkflowExecution () action or the
	// StartChildWorkflowExecution decision. Valid values are integers that range from
	// Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher
	// numbers indicate higher priority. For more information about setting task
	// priority, see Setting Task Priority
	// (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html)
	// in the Amazon SWF Developer Guide.
	DefaultTaskPriority *string
}

The configuration settings of a workflow type.

type WorkflowTypeFilter

type WorkflowTypeFilter struct {
	// Version of the workflow type.
	Version *string
	// Name of the workflow type.
	Name *string
}

Used to filter workflow execution query results by type. Each parameter, if specified, defines a rule that must be satisfied by each returned result.

type WorkflowTypeInfo

type WorkflowTypeInfo struct {
	// The workflow type this information is about.
	WorkflowType *WorkflowType
	// If the type is in deprecated state, then it is set to the date when the type was
	// deprecated.
	DeprecationDate *time.Time
	// The date when this type was registered.
	CreationDate *time.Time
	// The description of the type registered through RegisterWorkflowType ().
	Description *string
	// The current status of the workflow type.
	Status RegistrationStatus
}

Contains information about a workflow type.

Source Files

enums.go errors.go types.go

Version
v0.1.0
Published
Sep 29, 2020
Platform
js/wasm
Imports
4 packages
Last checked
58 minutes ago

Tools for package owners.