Module Values.EngagementSource

Incident Manager reaching out to a contact or escalation plan to engage contact during an incident.

Sourcetype nonrec t = {
  1. engagementArn : SsmContactsArn.t option;
    (*

    The Amazon Resource Name (ARN) of the engagement.

    *)
  2. contactArn : SsmContactsArn.t option;
    (*

    The ARN of the escalation plan or contact that Incident Manager is engaging.

    *)
  3. sender : Sender.t option;
    (*

    The user that started the engagement.

    *)
  4. incidentId : IncidentId.t option;
    (*

    The ARN of the incident that's engaging the contact.

    *)
  5. startTime : DateTime.t option;
    (*

    The time that the engagement began.

    *)
  6. stopTime : DateTime.t option;
    (*

    The time that the engagement ended.

    *)
}
Sourceval make : ?engagementArn:??? -> ?contactArn:??? -> ?sender:??? -> ?incidentId:??? -> ?startTime:??? -> ?stopTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SsmContactsArn.t | `Timestamp of DateTime.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