aws-sdk 2.658.0 → 2.662.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 (57) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +51 -0
  4. package/apis/application-autoscaling-2016-02-06.examples.json +6 -169
  5. package/apis/ce-2017-10-25.min.json +123 -88
  6. package/apis/ce-2017-10-25.paginators.json +5 -0
  7. package/apis/codeguru-reviewer-2019-09-19.min.json +341 -3
  8. package/apis/codeguru-reviewer-2019-09-19.paginators.json +15 -0
  9. package/apis/elasticmapreduce-2009-03-31.min.json +98 -17
  10. package/apis/es-2015-01-01.min.json +3 -0
  11. package/apis/firehose-2015-08-04.min.json +74 -30
  12. package/apis/guardduty-2017-11-28.min.json +165 -16
  13. package/apis/guardduty-2017-11-28.paginators.json +6 -0
  14. package/apis/iotevents-2018-07-27.min.json +102 -20
  15. package/apis/mediapackage-vod-2018-11-07.min.json +173 -36
  16. package/apis/metadata.json +3 -0
  17. package/apis/pinpoint-2016-12-01.min.json +363 -335
  18. package/apis/ram-2018-01-04.min.json +30 -0
  19. package/apis/rds-2014-10-31.min.json +2 -0
  20. package/apis/redshift-2012-12-01.min.json +154 -46
  21. package/apis/redshift-2012-12-01.paginators.json +6 -0
  22. package/apis/route53domains-2014-05-15.min.json +97 -24
  23. package/apis/storagegateway-2013-06-30.min.json +99 -14
  24. package/apis/synthetics-2017-10-11.examples.json +5 -0
  25. package/apis/synthetics-2017-10-11.min.json +578 -0
  26. package/apis/synthetics-2017-10-11.paginators.json +24 -0
  27. package/apis/transfer-2018-11-05.min.json +41 -24
  28. package/clients/all.d.ts +1 -0
  29. package/clients/all.js +2 -1
  30. package/clients/apigatewayv2.d.ts +40 -2
  31. package/clients/applicationautoscaling.d.ts +83 -83
  32. package/clients/codegurureviewer.d.ts +417 -10
  33. package/clients/costexplorer.d.ts +66 -28
  34. package/clients/emr.d.ts +91 -6
  35. package/clients/es.d.ts +4 -0
  36. package/clients/firehose.d.ts +50 -8
  37. package/clients/fms.d.ts +6 -6
  38. package/clients/glue.d.ts +4 -4
  39. package/clients/guardduty.d.ts +340 -224
  40. package/clients/iotevents.d.ts +106 -0
  41. package/clients/mediapackagevod.d.ts +55 -0
  42. package/clients/pinpoint.d.ts +115 -77
  43. package/clients/ram.d.ts +41 -2
  44. package/clients/rds.d.ts +13 -5
  45. package/clients/redshift.d.ts +162 -1
  46. package/clients/route53domains.d.ts +140 -47
  47. package/clients/storagegateway.d.ts +137 -60
  48. package/clients/synthetics.d.ts +656 -0
  49. package/clients/synthetics.js +18 -0
  50. package/clients/transfer.d.ts +154 -123
  51. package/dist/aws-sdk-core-react-native.js +2 -2
  52. package/dist/aws-sdk-react-native.js +61 -24
  53. package/dist/aws-sdk.js +664 -222
  54. package/dist/aws-sdk.min.js +74 -74
  55. package/lib/config_service_placeholders.d.ts +2 -0
  56. package/lib/core.js +1 -1
  57. package/package.json +1 -1
@@ -0,0 +1,578 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2017-10-11",
5
+ "endpointPrefix": "synthetics",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceAbbreviation": "Synthetics",
9
+ "serviceFullName": "Synthetics",
10
+ "serviceId": "synthetics",
11
+ "signatureVersion": "v4",
12
+ "signingName": "synthetics",
13
+ "uid": "synthetics-2017-10-11"
14
+ },
15
+ "operations": {
16
+ "CreateCanary": {
17
+ "http": {
18
+ "requestUri": "/canary"
19
+ },
20
+ "input": {
21
+ "type": "structure",
22
+ "required": [
23
+ "Name",
24
+ "Code",
25
+ "ArtifactS3Location",
26
+ "ExecutionRoleArn",
27
+ "Schedule",
28
+ "RuntimeVersion"
29
+ ],
30
+ "members": {
31
+ "Name": {},
32
+ "Code": {
33
+ "shape": "S3"
34
+ },
35
+ "ArtifactS3Location": {},
36
+ "ExecutionRoleArn": {},
37
+ "Schedule": {
38
+ "shape": "S7"
39
+ },
40
+ "RunConfig": {
41
+ "shape": "S9"
42
+ },
43
+ "SuccessRetentionPeriodInDays": {
44
+ "type": "integer"
45
+ },
46
+ "FailureRetentionPeriodInDays": {
47
+ "type": "integer"
48
+ },
49
+ "RuntimeVersion": {},
50
+ "VpcConfig": {
51
+ "shape": "Sc"
52
+ },
53
+ "Tags": {
54
+ "shape": "Sh"
55
+ }
56
+ }
57
+ },
58
+ "output": {
59
+ "type": "structure",
60
+ "members": {
61
+ "Canary": {
62
+ "shape": "Sl"
63
+ }
64
+ }
65
+ }
66
+ },
67
+ "DeleteCanary": {
68
+ "http": {
69
+ "method": "DELETE",
70
+ "requestUri": "/canary/{name}"
71
+ },
72
+ "input": {
73
+ "type": "structure",
74
+ "required": [
75
+ "Name"
76
+ ],
77
+ "members": {
78
+ "Name": {
79
+ "location": "uri",
80
+ "locationName": "name"
81
+ }
82
+ }
83
+ },
84
+ "output": {
85
+ "type": "structure",
86
+ "members": {}
87
+ }
88
+ },
89
+ "DescribeCanaries": {
90
+ "http": {
91
+ "requestUri": "/canaries"
92
+ },
93
+ "input": {
94
+ "type": "structure",
95
+ "members": {
96
+ "NextToken": {},
97
+ "MaxResults": {
98
+ "type": "integer"
99
+ }
100
+ }
101
+ },
102
+ "output": {
103
+ "type": "structure",
104
+ "members": {
105
+ "Canaries": {
106
+ "type": "list",
107
+ "member": {
108
+ "shape": "Sl"
109
+ }
110
+ },
111
+ "NextToken": {}
112
+ }
113
+ }
114
+ },
115
+ "DescribeCanariesLastRun": {
116
+ "http": {
117
+ "requestUri": "/canaries/last-run"
118
+ },
119
+ "input": {
120
+ "type": "structure",
121
+ "members": {
122
+ "NextToken": {},
123
+ "MaxResults": {
124
+ "type": "integer"
125
+ }
126
+ }
127
+ },
128
+ "output": {
129
+ "type": "structure",
130
+ "members": {
131
+ "CanariesLastRun": {
132
+ "type": "list",
133
+ "member": {
134
+ "type": "structure",
135
+ "members": {
136
+ "CanaryName": {},
137
+ "LastRun": {
138
+ "shape": "S19"
139
+ }
140
+ }
141
+ }
142
+ },
143
+ "NextToken": {}
144
+ }
145
+ }
146
+ },
147
+ "DescribeRuntimeVersions": {
148
+ "http": {
149
+ "requestUri": "/runtime-versions"
150
+ },
151
+ "input": {
152
+ "type": "structure",
153
+ "members": {
154
+ "NextToken": {},
155
+ "MaxResults": {
156
+ "type": "integer"
157
+ }
158
+ }
159
+ },
160
+ "output": {
161
+ "type": "structure",
162
+ "members": {
163
+ "RuntimeVersions": {
164
+ "type": "list",
165
+ "member": {
166
+ "type": "structure",
167
+ "members": {
168
+ "VersionName": {},
169
+ "Description": {},
170
+ "ReleaseDate": {
171
+ "type": "timestamp"
172
+ },
173
+ "DeprecationDate": {
174
+ "type": "timestamp"
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "NextToken": {}
180
+ }
181
+ }
182
+ },
183
+ "GetCanary": {
184
+ "http": {
185
+ "method": "GET",
186
+ "requestUri": "/canary/{name}"
187
+ },
188
+ "input": {
189
+ "type": "structure",
190
+ "required": [
191
+ "Name"
192
+ ],
193
+ "members": {
194
+ "Name": {
195
+ "location": "uri",
196
+ "locationName": "name"
197
+ }
198
+ }
199
+ },
200
+ "output": {
201
+ "type": "structure",
202
+ "members": {
203
+ "Canary": {
204
+ "shape": "Sl"
205
+ }
206
+ }
207
+ }
208
+ },
209
+ "GetCanaryRuns": {
210
+ "http": {
211
+ "requestUri": "/canary/{name}/runs"
212
+ },
213
+ "input": {
214
+ "type": "structure",
215
+ "required": [
216
+ "Name"
217
+ ],
218
+ "members": {
219
+ "Name": {
220
+ "location": "uri",
221
+ "locationName": "name"
222
+ },
223
+ "NextToken": {},
224
+ "MaxResults": {
225
+ "type": "integer"
226
+ }
227
+ }
228
+ },
229
+ "output": {
230
+ "type": "structure",
231
+ "members": {
232
+ "CanaryRuns": {
233
+ "type": "list",
234
+ "member": {
235
+ "shape": "S19"
236
+ }
237
+ },
238
+ "NextToken": {}
239
+ }
240
+ }
241
+ },
242
+ "ListTagsForResource": {
243
+ "http": {
244
+ "method": "GET",
245
+ "requestUri": "/tags/{resourceArn}"
246
+ },
247
+ "input": {
248
+ "type": "structure",
249
+ "required": [
250
+ "ResourceArn"
251
+ ],
252
+ "members": {
253
+ "ResourceArn": {
254
+ "location": "uri",
255
+ "locationName": "resourceArn"
256
+ }
257
+ }
258
+ },
259
+ "output": {
260
+ "type": "structure",
261
+ "members": {
262
+ "Tags": {
263
+ "shape": "Sh"
264
+ }
265
+ }
266
+ }
267
+ },
268
+ "StartCanary": {
269
+ "http": {
270
+ "requestUri": "/canary/{name}/start"
271
+ },
272
+ "input": {
273
+ "type": "structure",
274
+ "required": [
275
+ "Name"
276
+ ],
277
+ "members": {
278
+ "Name": {
279
+ "location": "uri",
280
+ "locationName": "name"
281
+ }
282
+ }
283
+ },
284
+ "output": {
285
+ "type": "structure",
286
+ "members": {}
287
+ }
288
+ },
289
+ "StopCanary": {
290
+ "http": {
291
+ "requestUri": "/canary/{name}/stop"
292
+ },
293
+ "input": {
294
+ "type": "structure",
295
+ "required": [
296
+ "Name"
297
+ ],
298
+ "members": {
299
+ "Name": {
300
+ "location": "uri",
301
+ "locationName": "name"
302
+ }
303
+ }
304
+ },
305
+ "output": {
306
+ "type": "structure",
307
+ "members": {}
308
+ }
309
+ },
310
+ "TagResource": {
311
+ "http": {
312
+ "requestUri": "/tags/{resourceArn}"
313
+ },
314
+ "input": {
315
+ "type": "structure",
316
+ "required": [
317
+ "ResourceArn",
318
+ "Tags"
319
+ ],
320
+ "members": {
321
+ "ResourceArn": {
322
+ "location": "uri",
323
+ "locationName": "resourceArn"
324
+ },
325
+ "Tags": {
326
+ "shape": "Sh"
327
+ }
328
+ }
329
+ },
330
+ "output": {
331
+ "type": "structure",
332
+ "members": {}
333
+ }
334
+ },
335
+ "UntagResource": {
336
+ "http": {
337
+ "method": "DELETE",
338
+ "requestUri": "/tags/{resourceArn}"
339
+ },
340
+ "input": {
341
+ "type": "structure",
342
+ "required": [
343
+ "ResourceArn",
344
+ "TagKeys"
345
+ ],
346
+ "members": {
347
+ "ResourceArn": {
348
+ "location": "uri",
349
+ "locationName": "resourceArn"
350
+ },
351
+ "TagKeys": {
352
+ "location": "querystring",
353
+ "locationName": "tagKeys",
354
+ "type": "list",
355
+ "member": {}
356
+ }
357
+ }
358
+ },
359
+ "output": {
360
+ "type": "structure",
361
+ "members": {}
362
+ }
363
+ },
364
+ "UpdateCanary": {
365
+ "http": {
366
+ "method": "PATCH",
367
+ "requestUri": "/canary/{name}"
368
+ },
369
+ "input": {
370
+ "type": "structure",
371
+ "required": [
372
+ "Name"
373
+ ],
374
+ "members": {
375
+ "Name": {
376
+ "location": "uri",
377
+ "locationName": "name"
378
+ },
379
+ "Code": {
380
+ "shape": "S3"
381
+ },
382
+ "ExecutionRoleArn": {},
383
+ "RuntimeVersion": {},
384
+ "Schedule": {
385
+ "shape": "S7"
386
+ },
387
+ "RunConfig": {
388
+ "shape": "S9"
389
+ },
390
+ "SuccessRetentionPeriodInDays": {
391
+ "type": "integer"
392
+ },
393
+ "FailureRetentionPeriodInDays": {
394
+ "type": "integer"
395
+ },
396
+ "VpcConfig": {
397
+ "shape": "Sc"
398
+ }
399
+ }
400
+ },
401
+ "output": {
402
+ "type": "structure",
403
+ "members": {}
404
+ }
405
+ }
406
+ },
407
+ "shapes": {
408
+ "S3": {
409
+ "type": "structure",
410
+ "required": [
411
+ "Handler"
412
+ ],
413
+ "members": {
414
+ "S3Bucket": {},
415
+ "S3Key": {},
416
+ "S3Version": {},
417
+ "ZipFile": {
418
+ "type": "blob"
419
+ },
420
+ "Handler": {}
421
+ }
422
+ },
423
+ "S7": {
424
+ "type": "structure",
425
+ "required": [
426
+ "Expression"
427
+ ],
428
+ "members": {
429
+ "Expression": {},
430
+ "DurationInSeconds": {
431
+ "type": "long"
432
+ }
433
+ }
434
+ },
435
+ "S9": {
436
+ "type": "structure",
437
+ "required": [
438
+ "TimeoutInSeconds"
439
+ ],
440
+ "members": {
441
+ "TimeoutInSeconds": {
442
+ "type": "integer"
443
+ }
444
+ }
445
+ },
446
+ "Sc": {
447
+ "type": "structure",
448
+ "members": {
449
+ "SubnetIds": {
450
+ "shape": "Sd"
451
+ },
452
+ "SecurityGroupIds": {
453
+ "shape": "Sf"
454
+ }
455
+ }
456
+ },
457
+ "Sd": {
458
+ "type": "list",
459
+ "member": {}
460
+ },
461
+ "Sf": {
462
+ "type": "list",
463
+ "member": {}
464
+ },
465
+ "Sh": {
466
+ "type": "map",
467
+ "key": {},
468
+ "value": {}
469
+ },
470
+ "Sl": {
471
+ "type": "structure",
472
+ "members": {
473
+ "Id": {},
474
+ "Name": {},
475
+ "Code": {
476
+ "type": "structure",
477
+ "members": {
478
+ "SourceLocationArn": {},
479
+ "Handler": {}
480
+ }
481
+ },
482
+ "ExecutionRoleArn": {},
483
+ "Schedule": {
484
+ "type": "structure",
485
+ "members": {
486
+ "Expression": {},
487
+ "DurationInSeconds": {
488
+ "type": "long"
489
+ }
490
+ }
491
+ },
492
+ "RunConfig": {
493
+ "type": "structure",
494
+ "members": {
495
+ "TimeoutInSeconds": {
496
+ "type": "integer"
497
+ }
498
+ }
499
+ },
500
+ "SuccessRetentionPeriodInDays": {
501
+ "type": "integer"
502
+ },
503
+ "FailureRetentionPeriodInDays": {
504
+ "type": "integer"
505
+ },
506
+ "Status": {
507
+ "type": "structure",
508
+ "members": {
509
+ "State": {},
510
+ "StateReason": {},
511
+ "StateReasonCode": {}
512
+ }
513
+ },
514
+ "Timeline": {
515
+ "type": "structure",
516
+ "members": {
517
+ "Created": {
518
+ "type": "timestamp"
519
+ },
520
+ "LastModified": {
521
+ "type": "timestamp"
522
+ },
523
+ "LastStarted": {
524
+ "type": "timestamp"
525
+ },
526
+ "LastStopped": {
527
+ "type": "timestamp"
528
+ }
529
+ }
530
+ },
531
+ "ArtifactS3Location": {},
532
+ "EngineArn": {},
533
+ "RuntimeVersion": {},
534
+ "VpcConfig": {
535
+ "type": "structure",
536
+ "members": {
537
+ "VpcId": {},
538
+ "SubnetIds": {
539
+ "shape": "Sd"
540
+ },
541
+ "SecurityGroupIds": {
542
+ "shape": "Sf"
543
+ }
544
+ }
545
+ },
546
+ "Tags": {
547
+ "shape": "Sh"
548
+ }
549
+ }
550
+ },
551
+ "S19": {
552
+ "type": "structure",
553
+ "members": {
554
+ "Name": {},
555
+ "Status": {
556
+ "type": "structure",
557
+ "members": {
558
+ "State": {},
559
+ "StateReason": {},
560
+ "StateReasonCode": {}
561
+ }
562
+ },
563
+ "Timeline": {
564
+ "type": "structure",
565
+ "members": {
566
+ "Started": {
567
+ "type": "timestamp"
568
+ },
569
+ "Completed": {
570
+ "type": "timestamp"
571
+ }
572
+ }
573
+ },
574
+ "ArtifactS3Location": {}
575
+ }
576
+ }
577
+ }
578
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "pagination": {
3
+ "DescribeCanaries": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken"
7
+ },
8
+ "DescribeCanariesLastRun": {
9
+ "input_token": "NextToken",
10
+ "limit_key": "MaxResults",
11
+ "output_token": "NextToken"
12
+ },
13
+ "DescribeRuntimeVersions": {
14
+ "input_token": "NextToken",
15
+ "limit_key": "MaxResults",
16
+ "output_token": "NextToken"
17
+ },
18
+ "GetCanaryRuns": {
19
+ "input_token": "NextToken",
20
+ "limit_key": "MaxResults",
21
+ "output_token": "NextToken"
22
+ }
23
+ }
24
+ }