Module Values.EffectiveDeploymentStatusDetailsSource

Contains all error-related information for the deployment record. The status details will be null if the deployment is in a success state. Greengrass nucleus v2.8.0 or later is required to get an accurate errorStack and errorTypes response. This field will not be returned for earlier Greengrass nucleus versions.

Sourcetype nonrec t = {
  1. errorStack : EffectiveDeploymentErrorStack.t option;
    (*

    Contains an ordered list of short error codes that range from the most generic error to the most specific one. The error codes describe the reason for failure whenever the coreDeviceExecutionStatus is in a failed state. The response will be an empty list if there is no error.

    *)
  2. errorTypes : EffectiveDeploymentErrorTypeList.t option;
    (*

    Contains tags which describe the error. You can use the error types to classify errors to assist with remediating the failure. The response will be an empty list if there is no error.

    *)
}
Sourceval make : ?errorStack:??? -> ?errorTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EffectiveDeploymentErrorCode.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t