Module Values.AlarmMuteRuleSummarySource

Summary information about an alarm mute rule, including its name, status, and configuration details.

Sourcetype nonrec t = {
  1. alarmMuteRuleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the alarm mute rule.

    *)
  2. expireDate : Timestamp.t option;
    (*

    The date and time when the mute rule expires and is no longer evaluated. This field is only present if an expiration date was configured.

    *)
  3. status : AlarmMuteRuleStatus.t option;
    (*

    The current status of the alarm mute rule. Valid values are SCHEDULED, ACTIVE, or EXPIRED.

    *)
  4. muteType : MuteType.t option;
    (*

    Indicates whether the mute rule is one-time or recurring. Valid values are ONE_TIME or RECURRING.

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

    The date and time when the mute rule was last updated.

    *)
}
Sourceval make : ?alarmMuteRuleArn:??? -> ?expireDate:??? -> ?status:??? -> ?muteType:??? -> ?lastUpdatedTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.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