Module Values.ComponentLatestVersionSource

Contains information about the latest version of a component.

Sourcetype nonrec t = {
  1. arn : ComponentVersionARN.t option;
    (*

    The ARN of the component version.

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

    The version of the component.

    *)
  3. creationTimestamp : Timestamp.t option;
    (*

    The time at which the component was created, expressed in ISO 8601 format.

    *)
  4. description : NonEmptyString.t option;
    (*

    The description of the component version.

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

    The publisher of the component version.

    *)
  6. platforms : ComponentPlatformList.t option;
    (*

    The platforms that the component version supports.

    *)
}
Sourceval make : ?arn:??? -> ?componentVersion:??? -> ?creationTimestamp:??? -> ?description:??? -> ?publisher:??? -> ?platforms:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.t ]) list ] list | `String of ComponentVersionARN.t | `Timestamp of Timestamp.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