Module Values.LabelGroupSummarySource

Contains information about the label group.

Sourcetype nonrec t = {
  1. labelGroupName : LabelGroupName.t option;
    (*

    The name of the label group.

    *)
  2. labelGroupArn : LabelGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the label group.

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

    The time at which the label group was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The time at which the label group was updated.

    *)
}
Sourceval make : ?labelGroupName:??? -> ?labelGroupArn:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LabelGroupName.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