aws-sdk 2.829.0 → 2.833.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/CHANGELOG.md +25 -1
  2. package/README.md +1 -1
  3. package/apis/customer-profiles-2020-08-15.min.json +4 -2
  4. package/apis/databrew-2017-07-25.min.json +79 -62
  5. package/apis/ec2-2016-11-15.min.json +197 -190
  6. package/apis/elasticache-2015-02-02.min.json +1 -0
  7. package/apis/es-2015-01-01.min.json +6 -0
  8. package/apis/kafka-2018-11-14.min.json +41 -0
  9. package/apis/managedblockchain-2018-09-24.min.json +159 -36
  10. package/apis/metadata.json +8 -0
  11. package/apis/models.lex.v2-2020-08-07.examples.json +5 -0
  12. package/apis/models.lex.v2-2020-08-07.min.json +2845 -0
  13. package/apis/models.lex.v2-2020-08-07.paginators.json +49 -0
  14. package/apis/monitoring-2010-08-01.min.json +15 -9
  15. package/apis/redshift-2012-12-01.min.json +1 -1
  16. package/apis/resourcegroupstaggingapi-2017-01-26.min.json +14 -10
  17. package/apis/robomaker-2018-06-29.min.json +198 -170
  18. package/apis/runtime.lex.v2-2020-08-07.examples.json +4 -0
  19. package/apis/runtime.lex.v2-2020-08-07.min.json +531 -0
  20. package/apis/runtime.lex.v2-2020-08-07.paginators.json +3 -0
  21. package/apis/securityhub-2018-10-26.min.json +406 -187
  22. package/apis/sesv2-2019-09-27.min.json +40 -15
  23. package/clients/accessanalyzer.d.ts +5 -5
  24. package/clients/all.d.ts +2 -0
  25. package/clients/all.js +3 -1
  26. package/clients/backup.d.ts +27 -27
  27. package/clients/cloudwatch.d.ts +12 -1
  28. package/clients/customerprofiles.d.ts +2 -2
  29. package/clients/databrew.d.ts +170 -143
  30. package/clients/ec2.d.ts +119 -111
  31. package/clients/elasticache.d.ts +14 -10
  32. package/clients/es.d.ts +8 -0
  33. package/clients/greengrassv2.d.ts +6 -6
  34. package/clients/iot.d.ts +2 -2
  35. package/clients/kafka.d.ts +52 -0
  36. package/clients/lexmodelsv2.d.ts +3350 -0
  37. package/clients/lexmodelsv2.js +18 -0
  38. package/clients/lexruntimev2.d.ts +542 -0
  39. package/clients/lexruntimev2.js +18 -0
  40. package/clients/lightsail.d.ts +2 -2
  41. package/clients/managedblockchain.d.ts +140 -6
  42. package/clients/rds.d.ts +14 -14
  43. package/clients/redshift.d.ts +8 -8
  44. package/clients/resourcegroupstaggingapi.d.ts +50 -45
  45. package/clients/robomaker.d.ts +35 -3
  46. package/clients/securityhub.d.ts +410 -63
  47. package/clients/sesv2.d.ts +30 -2
  48. package/clients/ssm.d.ts +2 -2
  49. package/dist/aws-sdk-core-react-native.js +2 -2
  50. package/dist/aws-sdk-react-native.js +91 -17
  51. package/dist/aws-sdk.js +225 -203
  52. package/dist/aws-sdk.min.js +60 -60
  53. package/lib/config.d.ts +1 -1
  54. package/lib/config_service_placeholders.d.ts +4 -0
  55. package/lib/core.js +1 -1
  56. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {}
4
+ }
@@ -0,0 +1,531 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2020-08-07",
5
+ "endpointPrefix": "runtime-v2-lex",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "protocolSettings": {
9
+ "h2": "eventstream"
10
+ },
11
+ "serviceAbbreviation": "Lex Runtime V2",
12
+ "serviceFullName": "Amazon Lex Runtime V2",
13
+ "serviceId": "Lex Runtime V2",
14
+ "signatureVersion": "v4",
15
+ "signingName": "lex",
16
+ "uid": "runtime.lex.v2-2020-08-07"
17
+ },
18
+ "operations": {
19
+ "DeleteSession": {
20
+ "http": {
21
+ "method": "DELETE",
22
+ "requestUri": "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"
23
+ },
24
+ "input": {
25
+ "type": "structure",
26
+ "required": [
27
+ "botId",
28
+ "botAliasId",
29
+ "sessionId",
30
+ "localeId"
31
+ ],
32
+ "members": {
33
+ "botId": {
34
+ "location": "uri",
35
+ "locationName": "botId"
36
+ },
37
+ "botAliasId": {
38
+ "location": "uri",
39
+ "locationName": "botAliasId"
40
+ },
41
+ "localeId": {
42
+ "location": "uri",
43
+ "locationName": "localeId"
44
+ },
45
+ "sessionId": {
46
+ "location": "uri",
47
+ "locationName": "sessionId"
48
+ }
49
+ }
50
+ },
51
+ "output": {
52
+ "type": "structure",
53
+ "members": {
54
+ "botId": {},
55
+ "botAliasId": {},
56
+ "localeId": {},
57
+ "sessionId": {}
58
+ }
59
+ }
60
+ },
61
+ "GetSession": {
62
+ "http": {
63
+ "method": "GET",
64
+ "requestUri": "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"
65
+ },
66
+ "input": {
67
+ "type": "structure",
68
+ "required": [
69
+ "botId",
70
+ "botAliasId",
71
+ "localeId",
72
+ "sessionId"
73
+ ],
74
+ "members": {
75
+ "botId": {
76
+ "location": "uri",
77
+ "locationName": "botId"
78
+ },
79
+ "botAliasId": {
80
+ "location": "uri",
81
+ "locationName": "botAliasId"
82
+ },
83
+ "localeId": {
84
+ "location": "uri",
85
+ "locationName": "localeId"
86
+ },
87
+ "sessionId": {
88
+ "location": "uri",
89
+ "locationName": "sessionId"
90
+ }
91
+ }
92
+ },
93
+ "output": {
94
+ "type": "structure",
95
+ "members": {
96
+ "sessionId": {},
97
+ "messages": {
98
+ "shape": "Sa"
99
+ },
100
+ "interpretations": {
101
+ "shape": "Sl"
102
+ },
103
+ "sessionState": {
104
+ "shape": "Sz"
105
+ }
106
+ }
107
+ }
108
+ },
109
+ "PutSession": {
110
+ "http": {
111
+ "requestUri": "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"
112
+ },
113
+ "input": {
114
+ "type": "structure",
115
+ "required": [
116
+ "botId",
117
+ "botAliasId",
118
+ "localeId",
119
+ "sessionState",
120
+ "sessionId"
121
+ ],
122
+ "members": {
123
+ "botId": {
124
+ "location": "uri",
125
+ "locationName": "botId"
126
+ },
127
+ "botAliasId": {
128
+ "location": "uri",
129
+ "locationName": "botAliasId"
130
+ },
131
+ "localeId": {
132
+ "location": "uri",
133
+ "locationName": "localeId"
134
+ },
135
+ "sessionId": {
136
+ "location": "uri",
137
+ "locationName": "sessionId"
138
+ },
139
+ "messages": {
140
+ "shape": "Sa"
141
+ },
142
+ "sessionState": {
143
+ "shape": "Sz"
144
+ },
145
+ "requestAttributes": {
146
+ "shape": "S1a"
147
+ },
148
+ "responseContentType": {
149
+ "location": "header",
150
+ "locationName": "ResponseContentType"
151
+ }
152
+ }
153
+ },
154
+ "output": {
155
+ "type": "structure",
156
+ "members": {
157
+ "contentType": {
158
+ "location": "header",
159
+ "locationName": "Content-Type"
160
+ },
161
+ "messages": {
162
+ "location": "header",
163
+ "locationName": "x-amz-lex-messages"
164
+ },
165
+ "sessionState": {
166
+ "location": "header",
167
+ "locationName": "x-amz-lex-session-state"
168
+ },
169
+ "requestAttributes": {
170
+ "location": "header",
171
+ "locationName": "x-amz-lex-request-attributes"
172
+ },
173
+ "sessionId": {
174
+ "location": "header",
175
+ "locationName": "x-amz-lex-session-id"
176
+ },
177
+ "audioStream": {
178
+ "shape": "S1e"
179
+ }
180
+ },
181
+ "payload": "audioStream"
182
+ }
183
+ },
184
+ "RecognizeText": {
185
+ "http": {
186
+ "requestUri": "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/text"
187
+ },
188
+ "input": {
189
+ "type": "structure",
190
+ "required": [
191
+ "botId",
192
+ "botAliasId",
193
+ "localeId",
194
+ "text",
195
+ "sessionId"
196
+ ],
197
+ "members": {
198
+ "botId": {
199
+ "location": "uri",
200
+ "locationName": "botId"
201
+ },
202
+ "botAliasId": {
203
+ "location": "uri",
204
+ "locationName": "botAliasId"
205
+ },
206
+ "localeId": {
207
+ "location": "uri",
208
+ "locationName": "localeId"
209
+ },
210
+ "sessionId": {
211
+ "location": "uri",
212
+ "locationName": "sessionId"
213
+ },
214
+ "text": {
215
+ "shape": "Sc"
216
+ },
217
+ "sessionState": {
218
+ "shape": "Sz"
219
+ },
220
+ "requestAttributes": {
221
+ "shape": "S1a"
222
+ }
223
+ }
224
+ },
225
+ "output": {
226
+ "type": "structure",
227
+ "members": {
228
+ "messages": {
229
+ "shape": "Sa"
230
+ },
231
+ "sessionState": {
232
+ "shape": "Sz"
233
+ },
234
+ "interpretations": {
235
+ "shape": "Sl"
236
+ },
237
+ "requestAttributes": {
238
+ "shape": "S1a"
239
+ },
240
+ "sessionId": {}
241
+ }
242
+ }
243
+ },
244
+ "RecognizeUtterance": {
245
+ "http": {
246
+ "requestUri": "/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/utterance"
247
+ },
248
+ "input": {
249
+ "type": "structure",
250
+ "required": [
251
+ "botId",
252
+ "botAliasId",
253
+ "localeId",
254
+ "requestContentType",
255
+ "sessionId"
256
+ ],
257
+ "members": {
258
+ "botId": {
259
+ "location": "uri",
260
+ "locationName": "botId"
261
+ },
262
+ "botAliasId": {
263
+ "location": "uri",
264
+ "locationName": "botAliasId"
265
+ },
266
+ "localeId": {
267
+ "location": "uri",
268
+ "locationName": "localeId"
269
+ },
270
+ "sessionId": {
271
+ "location": "uri",
272
+ "locationName": "sessionId"
273
+ },
274
+ "sessionState": {
275
+ "shape": "S1i",
276
+ "location": "header",
277
+ "locationName": "x-amz-lex-session-state"
278
+ },
279
+ "requestAttributes": {
280
+ "shape": "S1i",
281
+ "location": "header",
282
+ "locationName": "x-amz-lex-request-attributes"
283
+ },
284
+ "requestContentType": {
285
+ "location": "header",
286
+ "locationName": "Content-Type"
287
+ },
288
+ "responseContentType": {
289
+ "location": "header",
290
+ "locationName": "Response-Content-Type"
291
+ },
292
+ "inputStream": {
293
+ "shape": "S1e"
294
+ }
295
+ },
296
+ "payload": "inputStream"
297
+ },
298
+ "output": {
299
+ "type": "structure",
300
+ "members": {
301
+ "inputMode": {
302
+ "location": "header",
303
+ "locationName": "x-amz-lex-input-mode"
304
+ },
305
+ "contentType": {
306
+ "location": "header",
307
+ "locationName": "Content-Type"
308
+ },
309
+ "messages": {
310
+ "location": "header",
311
+ "locationName": "x-amz-lex-messages"
312
+ },
313
+ "interpretations": {
314
+ "location": "header",
315
+ "locationName": "x-amz-lex-interpretations"
316
+ },
317
+ "sessionState": {
318
+ "location": "header",
319
+ "locationName": "x-amz-lex-session-state"
320
+ },
321
+ "requestAttributes": {
322
+ "location": "header",
323
+ "locationName": "x-amz-lex-request-attributes"
324
+ },
325
+ "sessionId": {
326
+ "location": "header",
327
+ "locationName": "x-amz-lex-session-id"
328
+ },
329
+ "inputTranscript": {
330
+ "location": "header",
331
+ "locationName": "x-amz-lex-input-transcript"
332
+ },
333
+ "audioStream": {
334
+ "shape": "S1e"
335
+ }
336
+ },
337
+ "payload": "audioStream"
338
+ },
339
+ "authtype": "v4-unsigned-body"
340
+ }
341
+ },
342
+ "shapes": {
343
+ "Sa": {
344
+ "type": "list",
345
+ "member": {
346
+ "type": "structure",
347
+ "members": {
348
+ "content": {
349
+ "shape": "Sc"
350
+ },
351
+ "contentType": {},
352
+ "imageResponseCard": {
353
+ "type": "structure",
354
+ "required": [
355
+ "title"
356
+ ],
357
+ "members": {
358
+ "title": {},
359
+ "subtitle": {},
360
+ "imageUrl": {},
361
+ "buttons": {
362
+ "type": "list",
363
+ "member": {
364
+ "type": "structure",
365
+ "required": [
366
+ "text",
367
+ "value"
368
+ ],
369
+ "members": {
370
+ "text": {},
371
+ "value": {}
372
+ }
373
+ }
374
+ }
375
+ }
376
+ }
377
+ }
378
+ }
379
+ },
380
+ "Sc": {
381
+ "type": "string",
382
+ "sensitive": true
383
+ },
384
+ "Sl": {
385
+ "type": "list",
386
+ "member": {
387
+ "type": "structure",
388
+ "members": {
389
+ "nluConfidence": {
390
+ "type": "structure",
391
+ "members": {
392
+ "score": {
393
+ "type": "double"
394
+ }
395
+ }
396
+ },
397
+ "sentimentResponse": {
398
+ "type": "structure",
399
+ "members": {
400
+ "sentiment": {},
401
+ "sentimentScore": {
402
+ "type": "structure",
403
+ "members": {
404
+ "positive": {
405
+ "type": "double"
406
+ },
407
+ "negative": {
408
+ "type": "double"
409
+ },
410
+ "neutral": {
411
+ "type": "double"
412
+ },
413
+ "mixed": {
414
+ "type": "double"
415
+ }
416
+ }
417
+ }
418
+ }
419
+ },
420
+ "intent": {
421
+ "shape": "Ss"
422
+ }
423
+ }
424
+ }
425
+ },
426
+ "Ss": {
427
+ "type": "structure",
428
+ "required": [
429
+ "name"
430
+ ],
431
+ "members": {
432
+ "name": {},
433
+ "slots": {
434
+ "type": "map",
435
+ "key": {},
436
+ "value": {
437
+ "type": "structure",
438
+ "members": {
439
+ "value": {
440
+ "type": "structure",
441
+ "required": [
442
+ "interpretedValue"
443
+ ],
444
+ "members": {
445
+ "originalValue": {},
446
+ "interpretedValue": {},
447
+ "resolvedValues": {
448
+ "type": "list",
449
+ "member": {}
450
+ }
451
+ }
452
+ }
453
+ }
454
+ }
455
+ },
456
+ "state": {},
457
+ "confirmationState": {}
458
+ }
459
+ },
460
+ "Sz": {
461
+ "type": "structure",
462
+ "members": {
463
+ "dialogAction": {
464
+ "type": "structure",
465
+ "required": [
466
+ "type"
467
+ ],
468
+ "members": {
469
+ "type": {},
470
+ "slotToElicit": {}
471
+ }
472
+ },
473
+ "intent": {
474
+ "shape": "Ss"
475
+ },
476
+ "activeContexts": {
477
+ "type": "list",
478
+ "member": {
479
+ "type": "structure",
480
+ "required": [
481
+ "name",
482
+ "timeToLive"
483
+ ],
484
+ "members": {
485
+ "name": {},
486
+ "timeToLive": {
487
+ "type": "structure",
488
+ "required": [
489
+ "timeToLiveInSeconds",
490
+ "turnsToLive"
491
+ ],
492
+ "members": {
493
+ "timeToLiveInSeconds": {
494
+ "type": "integer"
495
+ },
496
+ "turnsToLive": {
497
+ "type": "integer"
498
+ }
499
+ }
500
+ },
501
+ "contextAttributes": {
502
+ "type": "map",
503
+ "key": {},
504
+ "value": {
505
+ "shape": "Sc"
506
+ }
507
+ }
508
+ }
509
+ }
510
+ },
511
+ "sessionAttributes": {
512
+ "shape": "S1a"
513
+ },
514
+ "originatingRequestId": {}
515
+ }
516
+ },
517
+ "S1a": {
518
+ "type": "map",
519
+ "key": {},
520
+ "value": {}
521
+ },
522
+ "S1e": {
523
+ "type": "blob",
524
+ "streaming": true
525
+ },
526
+ "S1i": {
527
+ "type": "string",
528
+ "sensitive": true
529
+ }
530
+ }
531
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "pagination": {}
3
+ }