Interface: IActivityExecutionListInfo
activity.v1.IActivityExecutionListInfo
Properties of an ActivityExecutionListInfo.
Hierarchy
-
↳
IActivityExecutionListInfo
Properties
activityId
• Optional activityId: null | string
A unique identifier of this activity within its namespace along with run ID (below).
Inherited from
activityType
• Optional activityType: null | $Properties
The type of the activity, a string that maps to a registered activity on a worker.
Inherited from
closeTime
• Optional closeTime: null | $Properties
If the activity is in a terminal status, this field represents the time the activity transitioned to that status.
Inherited from
executionDuration
• Optional executionDuration: null | $Properties
The difference between close time and scheduled time. This field is only populated if the activity is closed.
Inherited from
executionTime
• Optional executionTime: null | $Properties
The time at which the first activity task is made available for dispatch, computed as
schedule_time + start_delay. Same as schedule_time if start_delay is not set.
Inherited from
runId
• Optional runId: null | string
The run ID of the standalone activity.
Inherited from
scheduleTime
• Optional scheduleTime: null | $Properties
Time the activity was originally scheduled via a StartActivityExecution request.
Inherited from
searchAttributes
• Optional searchAttributes: null | $Properties
Search attributes from the start request.
Inherited from
stateSizeBytes
• Optional stateSizeBytes: null | Long
Updated once on scheduled and once on terminal status.
Inherited from
stateTransitionCount
• Optional stateTransitionCount: null | Long
Updated on terminal status.
Inherited from
$Properties.stateTransitionCount
status
• Optional status: null | ActivityExecutionStatus
Only scheduled and terminal statuses appear here. More detailed information in PendingActivityInfo but not available in the list response.
Inherited from
taskQueue
• Optional taskQueue: null | string
The task queue this activity was scheduled on when it was originally started, updated on activity options update.