-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.yaml
159 lines (159 loc) · 4.38 KB
/
api.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
openapi: 3.0.0
info:
title: simple-node-api
description: A simple API for a guestbook application
version: 2019-10-13
paths:
/:
post:
operationId: CreateMessage
requestBody:
content:
text/plain:
schema:
type: string
required: true
x-amazon-apigateway-integration:
$ref: '#/components/x-amazon-apigateway-integrations/createMessage'
# security:
# - write: []
responses:
"201":
description: "Successfully created a message."
content:
application/json:
schema:
$ref: "#/components/schemas/Message"
"400":
description: "Bad Request Exception"
content:
application/json:
schema:
$ref: "#/components/schemas/BadRequestException"
"500":
description: "Internal Server Error"
content:
application/json:
schema:
$ref: "#/components/schemas/InternalServerErrorException"
get:
operationId: ListMessages
parameters:
- name: maxItems
in: query
required: false
schema:
type: number
- name: token
in: query
required: false
schema:
type: string
x-amazon-apigateway-integration:
$ref: '#/components/x-amazon-apigateway-integrations/listMessages'
# security:
# - read: []
responses:
"200":
description: "Successfully listed messages."
content:
application/json:
schema:
$ref: "#/components/schemas/MessageList"
"400":
description: "Bad Request Exception"
content:
application/json:
schema:
$ref: "#/components/schemas/BadRequestException"
"500":
description: "Internal Server Error"
content:
application/json:
schema:
$ref: "#/components/schemas/InternalServerErrorException"
components:
x-amazon-apigateway-integrations:
createMessage:
type: aws_proxy
httpMethod: POST
uri:
Fn::Sub: "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${PostMessageLambda.Alias}/invocations"
passthroughBehavior: when_no_templates
payloadFormatVersion: 2.0
listMessages:
type: aws_proxy
httpMethod: POST
uri:
Fn::Sub: "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${ListMessagesLambda.Alias}/invocations"
passthroughBehaviour: when_no_templates
payloadFormatVersion: 2.0
deleteMessage:
type: aws_proxy
httpMethod: POST
uri:
Fn::Sub: "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${DeleteMessageLambda.Alias}/invocations"
passthroughBehaviour: when_no_templates
payloadFormatVersion: 2.0
schemas:
Message:
type: object
properties:
id:
type: string
message:
type: string
author:
type: string
time:
type: number
MessageList:
type: object
properties:
items:
type: array
items:
$ref: "#/components/schemas/Message"
nextToken:
type: string
required:
- items
BadRequestException:
type: object
properties:
message:
type: string
errorCode:
type: string
InternalServerErrorException:
type: object
properties:
message:
type: string
errorCode:
type: string
# securitySchemes:
# read:
# type: oauth2
# scopes:
# "read:messages": "read messages from a guestbook"
# x-amazon-apigateway-authorizier:
# type: jwt
# jwtConfiguration:
# issuer:
# Fn::Sub: "${Issuer}"
# audience:
# - Fn::Sub: "${Audience}"
# identitySource: "$request.header.Authorization"
# write:
# type: oauth2
# scopes:
# "write:messages": "write messages to a guestbook"
# x-amazon-apigateway-authorizier:
# type: jwt
# jwtConfiguration:
# issuer:
# Fn::Sub: "${Issuer}"
# audience:
# - Fn::Sub: "${Audience}"
# identitySource: "$request.header.Authorization"