Module Values.ReceiptSource

Records events during an engagement.

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

    The Amazon Resource Name (ARN) of the contact channel Incident Manager engaged.

    *)
  2. receiptType : ReceiptType.t option;
    (*

    The type follows the engagement cycle, SENT, DELIVERED, and READ.

    *)
  3. receiptInfo : ReceiptInfo.t option;
    (*

    Information provided during the page acknowledgement.

    *)
  4. receiptTime : DateTime.t option;
    (*

    The time receipt was SENT, DELIVERED, or READ.

    *)
}
Sourceval make : ?contactChannelArn:??? -> ?receiptType:??? -> ?receiptInfo:??? -> ?receiptTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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