Skip to main content

WorkflowExecutionEvent

Properties

NameTypeDescriptionNotes
TypeEnum [ "WorkflowExecutionScheduled", "WorkflowExecutionStarted", "WorkflowExecutionCompleted", "WorkflowExecutionFailed", "WorkflowTaskScheduled", "WorkflowTaskStarted", "WorkflowTaskCompleted", "WorkflowTaskFailed", "ActivityTaskScheduled", "ActivityTaskStarted", "ActivityTaskCompleted", "ActivityTaskFailed", "StartChildWorkflowExecutionInitiated", "ChildWorkflowExecutionStarted", "ChildWorkflowExecutionCompleted", "ChildWorkflowExecutionFailed" ]The type of event[optional]
TimestampSystem.DateTimeThe date-time when the event occurred[optional]
Attributes[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Additional attributes associated with the event[optional]

Examples

  • Prepare the resource
$WorkflowExecutionEvent = Initialize-PSSailpoint.V2024WorkflowExecutionEvent  -Type WorkflowTaskScheduled `
-Timestamp 2022-02-07T20:13:31.640618296Z `
-Attributes {}
  • Convert the resource to JSON
$WorkflowExecutionEvent | ConvertTo-JSON

[Back to top]