Module Values.ManagedMetricAlarmSource

The CloudWatch metric alarm associated with the Express service's scaling policy.

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

    The Amazon Resource Name (ARN) of the CloudWatch metric alarm.

    *)
  2. status : ManagedResourceStatus.t option;
    (*

    The status of the CloudWatch metric alarm.

    *)
  3. statusReason : String_.t option;
    (*

    Information about why the CloudWatch metric alarm is in the current status.

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

    The Unix timestamp for when the CloudWatch metric alarm was last updated.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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