File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ type WorkflowStatus struct {
3535 ID string `json:"workflow_uuid"` // Unique identifier for the workflow
3636 Status WorkflowStatusType `json:"status"` // Current execution status
3737 Name string `json:"name"` // Function name of the workflow
38- AuthenticatedUser * string `json:"authenticated_user,omitempty"` // User who initiated the workflow (if applicable)
39- AssumedRole * string `json:"assumed_role,omitempty"` // Role assumed during execution (if applicable)
40- AuthenticatedRoles * string `json:"authenticated_roles,omitempty"` // Roles available to the user (if applicable)
38+ AuthenticatedUser string `json:"authenticated_user,omitempty"` // User who initiated the workflow (if applicable)
39+ AssumedRole string `json:"assumed_role,omitempty"` // Role assumed during execution (if applicable)
40+ AuthenticatedRoles [] string `json:"authenticated_roles,omitempty"` // Roles available to the user (if applicable)
4141 Output any `json:"output,omitempty"` // Workflow output (available after completion)
4242 Error error `json:"error,omitempty"` // Error information (if status is ERROR)
4343 ExecutorID string `json:"executor_id"` // ID of the executor running this workflow
You can’t perform that action at this time.
0 commit comments