Values.FixedResponseActionConfigSourceInformation about an action that returns a custom HTTP response.
type nonrec t = {messageBody : FixedResponseActionMessage.t option;The message.
*)statusCode : FixedResponseActionStatusCode.t;The HTTP response code (2XX, 4XX, or 5XX).
*)contentType : FixedResponseActionContentType.t option;The content type. Valid Values: text/plain | text/css | text/html | application/javascript | application/json
*)}val make :
?messageBody:??? ->
?contentType:??? ->
statusCode:FixedResponseActionStatusCode.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `String of FixedResponseActionMessage.t ]) list ]