Module Values.PageSource

Incident Manager engaging a contact's contact channel.

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

    The Amazon Resource Name (ARN) of the page to the contact channel.

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

    The ARN of the engagement that this page is part of.

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

    The ARN of the contact that Incident Manager is engaging.

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

    The user that started the engagement.

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

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

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

    The time that Incident Manager engaged the contact channel.

    *)
  7. deliveryTime : DateTime.t option;
    (*

    The time the message was delivered to the contact channel.

    *)
  8. readTime : DateTime.t option;
    (*

    The time that the contact channel acknowledged engagement.

    *)
}
Sourceval make : ?pageArn:??? -> ?engagementArn:??? -> ?contactArn:??? -> ?sender:??? -> ?incidentId:??? -> ?sentTime:??? -> ?deliveryTime:??? -> ?readTime:??? -> 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