Module Values.CloudComponentStatusSource

Contains the status of a component version in the IoT Greengrass service.

Sourcetype nonrec t = {
  1. componentState : CloudComponentState.t option;
    (*

    The state of the component version.

    *)
  2. message : NonEmptyString.t option;
    (*

    A message that communicates details, such as errors, about the status of the component version.

    *)
  3. errors : StringMap.t option;
    (*

    A dictionary of errors that communicate why the component version is in an error state. For example, if IoT Greengrass can't access an artifact for the component version, then errors contains the artifact's URI as a key, and the error message as the value for that key.

    *)
  4. vendorGuidance : VendorGuidance.t option;
    (*

    The vendor guidance state for the component version. This state indicates whether the component version has any issues that you should consider before you deploy it. The vendor guidance state can be: ACTIVE – This component version is available and recommended for use. DISCONTINUED – This component version has been discontinued by its publisher. You can deploy this component version, but we recommend that you use a different version of this component. DELETED – This component version has been deleted by its publisher, so you can't deploy it. If you have any existing deployments that specify this component version, those deployments will fail.

    *)
  5. vendorGuidanceMessage : NonEmptyString.t option;
    (*

    A message that communicates details about the vendor guidance state of the component version. This message communicates why a component version is discontinued or deleted.

    *)
}
Sourceval make : ?componentState:??? -> ?message:??? -> ?errors:??? -> ?vendorGuidance:??? -> ?vendorGuidanceMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.t ]) 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