Module Values.AnomalyDetectorSummarySource

Summary information about an anomaly detector for list operations.

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

    The Amazon Resource Name (ARN) of the anomaly detector.

    *)
  2. anomalyDetectorId : AnomalyDetectorId.t option;
    (*

    The unique identifier of the anomaly detector.

    *)
  3. alias : AnomalyDetectorAlias.t option;
    (*

    The user-friendly name of the anomaly detector.

    *)
  4. status : AnomalyDetectorStatus.t option;
    (*

    The current status of the anomaly detector.

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

    The timestamp when the anomaly detector was created.

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

    The timestamp when the anomaly detector was last modified.

    *)
  7. tags : TagMap.t option;
    (*

    The tags applied to the anomaly detector.

    *)
}
Sourceval make : ?arn:??? -> ?anomalyDetectorId:??? -> ?alias:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AnomalyDetectorArn.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `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