Skip to main content

WorkflowExecutionHistory

Properties

NameTypeDescriptionNotes
Definition[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0The workflow definition for the workflow execution[optional]
History[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0List of workflow execution events for the given workflow execution[optional]
Trigger[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0The trigger that initiated the workflow execution[optional]

Examples

  • Prepare the resource
$WorkflowExecutionHistory = Initialize-V2025WorkflowExecutionHistory  -Definition null `
-History null `
-Trigger null
  • Convert the resource to JSON
$WorkflowExecutionHistory | ConvertTo-JSON

[Back to top]