Module Values.StartIncidentInputSource

Used to start an incident from CloudWatch alarms, EventBridge events, or manually.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    A token ensuring that the operation is called only once with the specified details.

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

    Defines the impact to the customers. Providing an impact overwrites the impact provided by a response plan. Supported impact codes 1 - Critical 2 - High 3 - Medium 4 - Low 5 - No Impact

    *)
  3. relatedItems : RelatedItemList.t option;
    (*

    Add related items to the incident for other responders to use. Related items are Amazon Web Services resources, external links, or files uploaded to an Amazon S3 bucket.

    *)
  4. responsePlanArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the response plan that pre-defines summary, chat channels, Amazon SNS topics, runbooks, title, and impact of the incident.

    *)
  5. title : IncidentTitle.t option;
    (*

    Provide a title for the incident. Providing a title overwrites the title provided by the response plan.

    *)
  6. triggerDetails : TriggerDetails.t option;
    (*

    Details of what created the incident record in Incident Manager.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?impact:??? -> ?relatedItems:??? -> ?title:??? -> ?triggerDetails:??? -> responsePlanArn:Arn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Impact.t | `List of [> `Structure of (string * [> `String of GeneratedId.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of Arn.t | `Structure of (string * [> `Boolean of Boolean.t | `String of PagerDutyIncidentDetailIdString.t ]) list ]) list ]) list ]) list ] list | `String of ClientToken.t | `Structure of (string * [> `String of RawData.t | `Timestamp of Timestamp.t ]) list ]) 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