Table of Contents

Class ProcessExecutionResult

Namespace
Amazon.Util
Assembly
AWSSDK.Core.dll

Class that contains result of executing an external process through the SDKs AWSSDKUtils.RunProcess/AWSSDKUtils.RunProcessAsync

public class ProcessExecutionResult
Inheritance
ProcessExecutionResult
Inherited Members

Constructors

ProcessExecutionResult()

public ProcessExecutionResult()

Properties

ExitCode

The exit code with which the process exited

public int ExitCode { get; set; }

Property Value

int

StandardError

The error output of the process read till the end

public string StandardError { get; set; }

Property Value

string

StandardOutput

The output of the process read till the end

public string StandardOutput { get; set; }

Property Value

string