Module Values.LabelSummarySource

Information about the label.

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

    The name of the label group.

    *)
  2. labelId : LabelId.t option;
    (*

    The ID of the label.

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

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

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

    The timestamp indicating the start of the label.

    *)
  5. endTime : Timestamp.t option;
    (*

    The timestamp indicating the end of the label.

    *)
  6. rating : LabelRating.t option;
    (*

    Indicates whether a labeled event represents an anomaly.

    *)
  7. faultCode : FaultCode.t option;
    (*

    Indicates the type of anomaly associated with the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.

    *)
  8. equipment : Equipment.t option;
    (*

    Indicates that a label pertains to a particular piece of equipment.

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

    The time at which the label was created.

    *)
}
Sourceval make : ?labelGroupName:??? -> ?labelId:??? -> ?labelGroupArn:??? -> ?startTime:??? -> ?endTime:??? -> ?rating:??? -> ?faultCode:??? -> ?equipment:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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