Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.72 KB | None | 0 0
  1. {
  2.     "resource": "some resource",
  3.     "path": "/path/",
  4.     "httpMethod": "GET",
  5.     "headers": [
  6.         "Accept: Something",
  7.         "Header-2: Value"
  8.     ],
  9.     "multiValueHeaders": [
  10.         "Header-Name": ["Value1", "Value2"],
  11.         "Header-2-Name": ["another-value"]
  12.     ],
  13.     "queryStringParameters": [
  14.         "q=something",
  15.         "limit=100"
  16.     ],
  17.     "multiValueQueryStringParameters": [
  18.         "sort": ["href asc", "name desc"]
  19.     ],
  20.     "pathParameters": [
  21.         "id",
  22.         "otherId"
  23.     ],
  24.     "stageVariables": [
  25.         "whatever-this-is"
  26.     ],
  27.     "requestContext": "stringRepresentationOfWhateverThisIs",
  28.     "body": "some body once told me",
  29.     "isBase64Encoded": true
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement