-
Notifications
You must be signed in to change notification settings - Fork 0
/
open_api_with_aws.yaml
58 lines (58 loc) · 1.53 KB
/
open_api_with_aws.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
openapi: "3.0.1"
info:
title: "SE-User-API"
version: "2022-03-05 22:10:10UTC"
servers:
- url: "https://3q75kg0nuf.execute-api.us-east-1.amazonaws.com/{basePath}"
variables:
basePath:
default: ""
paths:
/deck/logs/{id}:
get:
responses:
default:
description: "Default response for GET /deck/logs/{id}"
put:
responses:
default:
description: "Default response for PUT /deck/logs/{id}"
parameters:
- name: "id"
in: "path"
description: "Generated path parameter for id"
required: true
schema:
type: "string"
/users:
get:
responses:
default:
description: "Default response for GET /users"
x-amazon-apigateway-integration:
payloadFormatVersion: "2.0"
type: "aws_proxy"
httpMethod: "POST"
uri: "arn:aws:apigateway:us-east-1:lambda:path/2015-03-31/functions/arn:aws:lambda:us-east-1:076596238846:function:SE_User_Get/invocations"
connectionType: "INTERNET"
put:
responses:
default:
description: "Default response for PUT /users"
/users/{id}:
get:
responses:
default:
description: "Default response for GET /users/{id}"
put:
responses:
default:
description: "Default response for PUT /users/{id}"
parameters:
- name: "id"
in: "path"
description: "Generated path parameter for id"
required: true
schema:
type: "string"
x-amazon-apigateway-importexport-version: "1.0"