Values.AcceptPageRequestSourceUsed to acknowledge an engagement to a contact channel during an incident.
type nonrec t = {pageId : SsmContactsArn.t;The Amazon Resource Name (ARN) of the engagement to a contact channel.
*)contactChannelId : SsmContactsArn.t option;The ARN of the contact channel.
*)acceptType : AcceptType.t;The type indicates if the page was DELIVERED or READ.
*)note : ReceiptInfo.t option;Information provided by the user when the user acknowledges the page.
*)acceptCode : AcceptCode.t;A 6-digit code used to acknowledge the page.
*)acceptCodeValidation : AcceptCodeValidation.t option;An optional field that Incident Manager uses to ENFORCE AcceptCode validation when acknowledging an page. Acknowledgement can occur by replying to a page, or when entering the AcceptCode in the console. Enforcing AcceptCode validation causes Incident Manager to verify that the code entered by the user matches the code sent by Incident Manager with the page. Incident Manager can also IGNORE AcceptCode validation. Ignoring AcceptCode validation causes Incident Manager to accept any value entered for the AcceptCode.
*)}val make :
?contactChannelId:??? ->
?note:??? ->
?acceptCodeValidation:??? ->
pageId:SsmContactsArn.t ->
acceptType:AcceptType.t ->
acceptCode:AcceptCode.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of SsmContactsArn.t ]) list ]