Module Values.DetectorModelVersionSummarySource

Information about the detector model version.

Sourcetype nonrec t = {
  1. detectorModelName : DetectorModelName.t option;
    (*

    The name of the detector model.

    *)
  2. detectorModelVersion : DetectorModelVersion.t option;
    (*

    The ID of the detector model version.

    *)
  3. detectorModelArn : DetectorModelArn.t option;
    (*

    The ARN of the detector model version.

    *)
  4. roleArn : AmazonResourceName.t option;
    (*

    The ARN of the role that grants the detector model permission to perform its tasks.

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

    The time the detector model version was created.

    *)
  6. lastUpdateTime : Timestamp.t option;
    (*

    The last time the detector model version was updated.

    *)
  7. status : DetectorModelVersionStatus.t option;
    (*

    The status of the detector model version.

    *)
  8. evaluationMethod : EvaluationMethod.t option;
    (*

    Information about the order in which events are evaluated and how actions are executed.

    *)
}
Sourceval make : ?detectorModelName:??? -> ?detectorModelVersion:??? -> ?detectorModelArn:??? -> ?roleArn:??? -> ?creationTime:??? -> ?lastUpdateTime:??? -> ?status:??? -> ?evaluationMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DetectorModelName.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