Module Values.DescribeEngagementResultSource

Incident Manager uses engagements to engage contacts and escalation plans during an incident. Use this command to describe the engagement that occurred during an incident.

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

    The ARN of the escalation plan or contacts involved in the engagement.

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

    The ARN of the engagement.

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

    The user that started the engagement.

    *)
  4. 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.

    *)
  5. 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.

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

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

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

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

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

    The ARN of the incident in which the engagement occurred.

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

    The time that the engagement started.

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

    The time that the engagement ended.

    *)
}
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 : ?contactArn:??? -> ?engagementArn:??? -> ?sender:??? -> ?subject:??? -> ?content:??? -> ?publicSubject:??? -> ?publicContent:??? -> ?incidentId:??? -> ?startTime:??? -> ?stopTime:??? -> 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