Module Values.ComponentCandidateSource

Contains information about a component that is a candidate to deploy to a Greengrass core device.

Sourcetype nonrec t = {
  1. componentName : ComponentNameString.t option;
    (*

    The name of the component.

    *)
  2. componentVersion : ComponentVersionString.t option;
    (*

    The version of the component.

    *)
  3. versionRequirements : ComponentVersionRequirementMap.t option;
    (*

    The version requirements for the component's dependencies. Greengrass core devices get the version requirements from component recipes. IoT Greengrass V2 uses semantic version constraints. For more information, see Semantic Versioning.

    *)
}
Sourceval make : ?componentName:??? -> ?componentVersion:??? -> ?versionRequirements:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of ComponentNameString.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