Module Values.DescribePageResultSource

Lists details of the engagement to a contact channel.

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

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

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

    The ARN of the engagement that engaged the contact channel.

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

    The ARN of the contact that was engaged.

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

    The user that started the engagement.

    *)
  5. subject : Subject.t option;
    (*

    The secure subject of the message that was sent to the contact. Use this field for engagements to VOICE and EMAIL.

    *)
  6. content : Content.t option;
    (*

    The secure content of the message that was sent to the contact. Use this field for engagements to VOICE and EMAIL.

    *)
  7. publicSubject : PublicSubject.t option;
    (*

    The insecure subject of the message that was sent to the contact. Use this field for engagements to SMS.

    *)
  8. publicContent : PublicContent.t option;
    (*

    The insecure content of the message that was sent to the contact. Use this field for engagements to SMS.

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

    The ARN of the incident that engaged the contact channel.

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

    The time the engagement was sent to the contact channel.

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

    The time that the contact channel acknowledged the engagement.

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

    The time that the contact channel received the engagement.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `DataEncryptionException of DataEncryptionException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pageArn:??? -> ?engagementArn:??? -> ?contactArn:??? -> ?sender:??? -> ?subject:??? -> ?content:??? -> ?publicSubject:??? -> ?publicContent:??? -> ?incidentId:??? -> ?sentTime:??? -> ?readTime:??? -> ?deliveryTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `DataEncryptionException of DataEncryptionException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `DataEncryptionException of DataEncryptionException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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