Values.PutGatewayResponseRequestSourceCreates a customization of a GatewayResponse of a specified response type and status code on the given RestApi.
type nonrec t = {restApiId : String_.t;The string identifier of the associated RestApi.
*)responseType : GatewayResponseType.t;The response type of the associated GatewayResponse
*)statusCode : StatusCode.t option;The HTTP status code of the GatewayResponse.
*)responseParameters : MapOfStringToString.t option;Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.
*)responseTemplates : MapOfStringToString.t option;Response templates of the GatewayResponse as a string-to-string map of key-value pairs.
*)}val make :
?statusCode:??? ->
?responseParameters:??? ->
?responseTemplates:??? ->
restApiId:String_.t ->
responseType:GatewayResponseType.t ->
unit ->
t