AWSSDK.SimpleSystemsManagement by Amazon Web Services

<PackageReference Include="AWSSDK.SimpleSystemsManagement" Version="3.3.3.3" />

.NET API 345,600 bytes

 AutomationExecution

public class AutomationExecution
Detailed information about the current state of an individual Automation execution.
public string AutomationExecutionId { get; set; }

Gets and sets the property AutomationExecutionId.

The execution ID.

Gets and sets the property AutomationExecutionStatus.

The execution status of the Automation.

public string DocumentName { get; set; }

Gets and sets the property DocumentName.

The name of the Automation document used during the execution.

public string DocumentVersion { get; set; }

Gets and sets the property DocumentVersion.

The version of the document to use during execution.

public DateTime ExecutionEndTime { get; set; }

Gets and sets the property ExecutionEndTime.

The time the execution finished.

public DateTime ExecutionStartTime { get; set; }

Gets and sets the property ExecutionStartTime.

The time the execution started.

public string FailureMessage { get; set; }

Gets and sets the property FailureMessage.

A message describing why an execution has failed, if the status is set to Failed.

public Dictionary<string, List<string>> Outputs { get; set; }

Gets and sets the property Outputs.

The list of execution outputs as defined in the automation document.

public Dictionary<string, List<string>> Parameters { get; set; }

Gets and sets the property Parameters.

The key-value map of execution parameters, which were supplied when calling StartAutomationExecution.

public List<StepExecution> StepExecutions { get; set; }

Gets and sets the property StepExecutions.

A list of details about the current state of all steps that comprise an execution. An Automation document contains a list of steps that are executed in order.