File tree Expand file tree Collapse file tree 1 file changed +29
-2
lines changed
localstack-core/localstack Expand file tree Collapse file tree 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,29 @@ components:
211
211
- error
212
212
- subscription_arn
213
213
type : object
214
+ ReceiveMessageResult :
215
+ type : object
216
+ description : https://github.com/boto/botocore/blob/develop/botocore/data/sqs/2012-11-05/service-2.json
217
+ properties :
218
+ Messages :
219
+ type : array
220
+ items :
221
+ $ref : ' #/components/schemas/Message'
222
+ Message :
223
+ type : object
224
+ properties :
225
+ MessageId :
226
+ type : [string, 'null']
227
+ ReceiptHandle :
228
+ type : [string, 'null']
229
+ MD5OfBody :
230
+ type : [string, 'null']
231
+ Body :
232
+ type : [string, 'null']
233
+ Attributes :
234
+ type : object
235
+ MessageAttributes :
236
+ type : object
214
237
CloudWatchMetrics :
215
238
additionalProperties : false
216
239
properties :
@@ -529,7 +552,9 @@ paths:
529
552
' 200 ' :
530
553
content :
531
554
text/xml : {}
532
- application/json : {}
555
+ application/json :
556
+ schema :
557
+ $ref : ' #/components/schemas/ReceiveMessageResult'
533
558
description : SQS queue messages
534
559
' 400 ' :
535
560
content :
@@ -569,7 +594,9 @@ paths:
569
594
' 200 ' :
570
595
content :
571
596
text/xml : {}
572
- application/json : {}
597
+ application/json :
598
+ schema :
599
+ $ref : ' #/components/schemas/ReceiveMessageResult'
573
600
description : SQS queue messages
574
601
' 400 ' :
575
602
content :
You can’t perform that action at this time.
0 commit comments