Module Values.IncidentTemplateSource

Basic details used in creating a response plan. The response plan is then used to create an incident record.

Sourcetype nonrec t = {
  1. dedupeString : DedupeString.t option;
    (*

    The string Incident Manager uses to prevent the same root cause from creating multiple incidents in the same account. A deduplication string is a term or phrase the system uses to check for duplicate incidents. If you specify a deduplication string, Incident Manager searches for open incidents that contain the same string in the dedupeString field when it creates the incident. If a duplicate is detected, Incident Manager deduplicates the newer incident into the existing incident. By default, Incident Manager automatically deduplicates multiple incidents created by the same Amazon CloudWatch alarm or Amazon EventBridge event. You don't have to enter your own deduplication string to prevent duplication for these resource types.

    *)
  2. impact : Impact.t;
    (*

    The impact of the incident on your customers and applications. Supported impact codes 1 - Critical 2 - High 3 - Medium 4 - Low 5 - No Impact

    *)
  3. incidentTags : TagMap.t option;
    (*

    Tags to assign to the template. When the StartIncident API action is called, Incident Manager assigns the tags specified in the template to the incident.

    *)
  4. notificationTargets : NotificationTargetSet.t option;
    (*

    The Amazon SNS targets that are notified when updates are made to an incident.

    *)
  5. summary : IncidentSummary.t option;
    (*

    The summary of the incident. The summary is a brief synopsis of what occurred, what's currently happening, and context.

    *)
  6. title : IncidentTitle.t;
    (*

    The title of the incident.

    *)
}
Sourceval context_ : string
Sourceval make : ?dedupeString:??? -> ?incidentTags:??? -> ?notificationTargets:??? -> ?summary:??? -> impact:Impact.t -> title:IncidentTitle.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Impact.t | `List of [> `Structure of (string * [> `String of Arn.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of DedupeString.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