Module Values.AlarmSource

Indicates the Amazon CloudWatch alarm detected while running an assessment.

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

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

    *)
  2. source : String255.t option;
    (*

    Indicates the source of the Amazon CloudWatch alarm. That is, it indicates if the alarm was created using Resilience Hub recommendation (AwsResilienceHub), or if you had created the alarm in Amazon CloudWatch (Customer).

    *)
}
Sourceval make : ?alarmArn:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.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