aws-sdk 2.953.0 → 2.957.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 (59) hide show
  1. package/CHANGELOG.md +29 -1
  2. package/README.md +1 -1
  3. package/apis/batch-2016-08-10.min.json +18 -5
  4. package/apis/chime-2018-05-01.min.json +78 -0
  5. package/apis/cloudformation-2010-05-15.min.json +31 -0
  6. package/apis/iotanalytics-2017-11-27.min.json +64 -34
  7. package/apis/iotsitewise-2019-12-02.min.json +143 -78
  8. package/apis/iotwireless-2020-11-22.min.json +1 -0
  9. package/apis/metadata.json +13 -1
  10. package/apis/models.lex.v2-2020-08-07.waiters2.json +255 -0
  11. package/apis/monitoring-2010-08-01.min.json +23 -22
  12. package/apis/quicksight-2018-04-01.min.json +284 -103
  13. package/apis/redshift-data-2019-12-20.min.json +90 -8
  14. package/apis/route53-2013-04-01.min.json +61 -60
  15. package/apis/route53-recovery-cluster-2019-12-02.examples.json +5 -0
  16. package/apis/route53-recovery-cluster-2019-12-02.min.json +85 -0
  17. package/apis/route53-recovery-cluster-2019-12-02.paginators.json +4 -0
  18. package/apis/route53-recovery-control-config-2020-11-02.min.json +799 -0
  19. package/apis/route53-recovery-control-config-2020-11-02.paginators.json +29 -0
  20. package/apis/route53-recovery-control-config-2020-11-02.waiters2.json +152 -0
  21. package/apis/route53-recovery-readiness-2019-12-02.min.json +1457 -0
  22. package/apis/route53-recovery-readiness-2019-12-02.paginators.json +76 -0
  23. package/apis/s3control-2018-08-20.min.json +64 -55
  24. package/apis/synthetics-2017-10-11.min.json +40 -3
  25. package/apis/textract-2018-06-27.min.json +144 -46
  26. package/clients/all.d.ts +3 -0
  27. package/clients/all.js +4 -1
  28. package/clients/batch.d.ts +159 -140
  29. package/clients/chime.d.ts +99 -2
  30. package/clients/cloudformation.d.ts +294 -256
  31. package/clients/cloudwatch.d.ts +19 -14
  32. package/clients/ec2.d.ts +89 -89
  33. package/clients/identitystore.d.ts +15 -15
  34. package/clients/iot.d.ts +2 -2
  35. package/clients/iotanalytics.d.ts +169 -129
  36. package/clients/iotsitewise.d.ts +74 -6
  37. package/clients/iotwireless.d.ts +18 -17
  38. package/clients/lexmodelsv2.js +1 -0
  39. package/clients/quicksight.d.ts +504 -316
  40. package/clients/redshiftdata.d.ts +164 -38
  41. package/clients/route53.d.ts +92 -87
  42. package/clients/route53recoverycluster.d.ts +105 -0
  43. package/clients/route53recoverycluster.js +18 -0
  44. package/clients/route53recoverycontrolconfig.d.ts +800 -0
  45. package/clients/route53recoverycontrolconfig.js +19 -0
  46. package/clients/route53recoveryreadiness.d.ts +1170 -0
  47. package/clients/route53recoveryreadiness.js +18 -0
  48. package/clients/s3control.d.ts +22 -0
  49. package/clients/shield.d.ts +69 -69
  50. package/clients/ssoadmin.d.ts +83 -83
  51. package/clients/synthetics.d.ts +27 -10
  52. package/clients/textract.d.ts +92 -1
  53. package/dist/aws-sdk-core-react-native.js +2 -2
  54. package/dist/aws-sdk-react-native.js +228 -103
  55. package/dist/aws-sdk.js +194 -120
  56. package/dist/aws-sdk.min.js +85 -85
  57. package/lib/config_service_placeholders.d.ts +6 -0
  58. package/lib/core.js +1 -1
  59. package/package.json +1 -1
@@ -0,0 +1,255 @@
1
+ {
2
+ "version":2,
3
+ "waiters":{
4
+ "BotAvailable":{
5
+ "delay":10,
6
+ "operation":"DescribeBot",
7
+ "maxAttempts":35,
8
+ "description":"Wait until a bot is available",
9
+ "acceptors":[
10
+ {
11
+ "expected":"Available",
12
+ "matcher":"path",
13
+ "state":"success",
14
+ "argument":"botStatus"
15
+ },
16
+ {
17
+ "expected":"Deleting",
18
+ "matcher":"path",
19
+ "state":"failure",
20
+ "argument":"botStatus"
21
+ },
22
+ {
23
+ "expected":"Failed",
24
+ "matcher":"path",
25
+ "state":"failure",
26
+ "argument":"botStatus"
27
+ },
28
+ {
29
+ "expected":"Inactive",
30
+ "matcher":"path",
31
+ "state":"failure",
32
+ "argument":"botStatus"
33
+ }
34
+ ]
35
+ },
36
+ "BotAliasAvailable":{
37
+ "delay":10,
38
+ "operation":"DescribeBotAlias",
39
+ "maxAttempts":35,
40
+ "description":"Wait until a bot alias is available",
41
+ "acceptors":[
42
+ {
43
+ "expected":"Available",
44
+ "matcher":"path",
45
+ "state":"success",
46
+ "argument":"botAliasStatus"
47
+ },
48
+ {
49
+ "expected":"Failed",
50
+ "matcher":"path",
51
+ "state":"failure",
52
+ "argument":"botAliasStatus"
53
+ },
54
+ {
55
+ "expected":"Deleting",
56
+ "matcher":"path",
57
+ "state":"failure",
58
+ "argument":"botAliasStatus"
59
+ }
60
+ ]
61
+ },
62
+ "BotExportCompleted":{
63
+ "delay":10,
64
+ "operation":"DescribeExport",
65
+ "maxAttempts":35,
66
+ "description":"Wait until a bot has been exported",
67
+ "acceptors":[
68
+ {
69
+ "expected":"Completed",
70
+ "matcher":"path",
71
+ "state":"success",
72
+ "argument":"exportStatus"
73
+ },
74
+ {
75
+ "expected":"Deleting",
76
+ "matcher":"path",
77
+ "state":"failure",
78
+ "argument":"exportStatus"
79
+ },
80
+ {
81
+ "expected":"Failed",
82
+ "matcher":"path",
83
+ "state":"failure",
84
+ "argument":"exportStatus"
85
+ }
86
+ ]
87
+ },
88
+ "BotImportCompleted":{
89
+ "delay":10,
90
+ "operation":"DescribeImport",
91
+ "maxAttempts":35,
92
+ "description":"Wait until a bot has been imported",
93
+ "acceptors":[
94
+ {
95
+ "expected":"Completed",
96
+ "matcher":"path",
97
+ "state":"success",
98
+ "argument":"importStatus"
99
+ },
100
+ {
101
+ "expected":"Deleting",
102
+ "matcher":"path",
103
+ "state":"failure",
104
+ "argument":"importStatus"
105
+ },
106
+ {
107
+ "expected":"Failed",
108
+ "matcher":"path",
109
+ "state":"failure",
110
+ "argument":"importStatus"
111
+ }
112
+ ]
113
+ },
114
+ "BotLocaleBuilt":{
115
+ "delay":10,
116
+ "operation":"DescribeBotLocale",
117
+ "maxAttempts":35,
118
+ "description":"Wait until a bot locale is built",
119
+ "acceptors":[
120
+ {
121
+ "expected":"Built",
122
+ "matcher":"path",
123
+ "state":"success",
124
+ "argument":"botLocaleStatus"
125
+ },
126
+ {
127
+ "expected":"Deleting",
128
+ "matcher":"path",
129
+ "state":"failure",
130
+ "argument":"botLocaleStatus"
131
+ },
132
+ {
133
+ "expected":"Failed",
134
+ "matcher":"path",
135
+ "state":"failure",
136
+ "argument":"botLocaleStatus"
137
+ },
138
+ {
139
+ "expected":"NotBuilt",
140
+ "matcher":"path",
141
+ "state":"failure",
142
+ "argument":"botLocaleStatus"
143
+ }
144
+ ]
145
+ },
146
+ "BotLocaleExpressTestingAvailable":{
147
+ "delay":10,
148
+ "operation":"DescribeBotLocale",
149
+ "maxAttempts":35,
150
+ "description":"Wait until a bot locale build is ready for express testing",
151
+ "acceptors":[
152
+ {
153
+ "expected":"Built",
154
+ "matcher":"path",
155
+ "state":"success",
156
+ "argument":"botLocaleStatus"
157
+ },
158
+ {
159
+ "expected":"ReadyExpressTesting",
160
+ "matcher":"path",
161
+ "state":"success",
162
+ "argument":"botLocaleStatus"
163
+ },
164
+ {
165
+ "expected":"Deleting",
166
+ "matcher":"path",
167
+ "state":"failure",
168
+ "argument":"botLocaleStatus"
169
+ },
170
+ {
171
+ "expected":"Failed",
172
+ "matcher":"path",
173
+ "state":"failure",
174
+ "argument":"botLocaleStatus"
175
+ },
176
+ {
177
+ "expected":"NotBuilt",
178
+ "matcher":"path",
179
+ "state":"failure",
180
+ "argument":"botLocaleStatus"
181
+ }
182
+ ]
183
+ },
184
+ "BotVersionAvailable":{
185
+ "delay":10,
186
+ "operation":"DescribeBotVersion",
187
+ "maxAttempts":35,
188
+ "description":"Wait until a bot version is available",
189
+ "acceptors":[
190
+ {
191
+ "expected":"Available",
192
+ "matcher":"path",
193
+ "state":"success",
194
+ "argument":"botStatus"
195
+ },
196
+ {
197
+ "expected":"Deleting",
198
+ "matcher":"path",
199
+ "state":"failure",
200
+ "argument":"botStatus"
201
+ },
202
+ {
203
+ "expected":"Failed",
204
+ "matcher":"path",
205
+ "state":"failure",
206
+ "argument":"botStatus"
207
+ },
208
+ {
209
+ "state":"retry",
210
+ "matcher":"status",
211
+ "expected":404
212
+ }
213
+ ]
214
+ },
215
+ "BotLocaleCreated":{
216
+ "delay":10,
217
+ "operation":"DescribeBotLocale",
218
+ "maxAttempts":35,
219
+ "description":"Wait unit a bot locale is created",
220
+ "acceptors":[
221
+ {
222
+ "expected":"Built",
223
+ "matcher":"path",
224
+ "state":"success",
225
+ "argument":"botLocaleStatus"
226
+ },
227
+ {
228
+ "expected":"ReadyExpressTesting",
229
+ "matcher":"path",
230
+ "state":"success",
231
+ "argument":"botLocaleStatus"
232
+ },
233
+ {
234
+ "expected":"NotBuilt",
235
+ "matcher":"path",
236
+ "state":"success",
237
+ "argument":"botLocaleStatus"
238
+ },
239
+ {
240
+ "expected":"Deleting",
241
+ "matcher":"path",
242
+ "state":"failure",
243
+ "argument":"botLocaleStatus"
244
+ },
245
+ {
246
+ "expected":"Failed",
247
+ "matcher":"path",
248
+ "state":"failure",
249
+ "argument":"botLocaleStatus"
250
+ }
251
+ ]
252
+ }
253
+ }
254
+ }
255
+
@@ -293,7 +293,7 @@
293
293
  },
294
294
  "Stat": {},
295
295
  "Configuration": {
296
- "shape": "S2e"
296
+ "shape": "S2f"
297
297
  },
298
298
  "StateValue": {}
299
299
  }
@@ -606,14 +606,14 @@
606
606
  },
607
607
  "StatusCode": {},
608
608
  "Messages": {
609
- "shape": "S3v"
609
+ "shape": "S3w"
610
610
  }
611
611
  }
612
612
  }
613
613
  },
614
614
  "NextToken": {},
615
615
  "Messages": {
616
- "shape": "S3v"
616
+ "shape": "S3w"
617
617
  }
618
618
  }
619
619
  }
@@ -723,10 +723,10 @@
723
723
  "Arn": {},
724
724
  "Name": {},
725
725
  "IncludeFilters": {
726
- "shape": "S49"
726
+ "shape": "S4a"
727
727
  },
728
728
  "ExcludeFilters": {
729
- "shape": "S49"
729
+ "shape": "S4a"
730
730
  },
731
731
  "FirehoseArn": {},
732
732
  "RoleArn": {},
@@ -887,7 +887,7 @@
887
887
  "type": "structure",
888
888
  "members": {
889
889
  "Tags": {
890
- "shape": "S52"
890
+ "shape": "S53"
891
891
  }
892
892
  }
893
893
  }
@@ -908,7 +908,7 @@
908
908
  },
909
909
  "Stat": {},
910
910
  "Configuration": {
911
- "shape": "S2e"
911
+ "shape": "S2f"
912
912
  }
913
913
  }
914
914
  },
@@ -942,7 +942,7 @@
942
942
  "shape": "S1f"
943
943
  },
944
944
  "Tags": {
945
- "shape": "S52"
945
+ "shape": "S53"
946
946
  }
947
947
  }
948
948
  }
@@ -988,7 +988,7 @@
988
988
  "RuleState": {},
989
989
  "RuleDefinition": {},
990
990
  "Tags": {
991
- "shape": "S52"
991
+ "shape": "S53"
992
992
  }
993
993
  }
994
994
  },
@@ -1048,7 +1048,7 @@
1048
1048
  "shape": "S1y"
1049
1049
  },
1050
1050
  "Tags": {
1051
- "shape": "S52"
1051
+ "shape": "S53"
1052
1052
  },
1053
1053
  "ThresholdMetricId": {}
1054
1054
  }
@@ -1138,16 +1138,16 @@
1138
1138
  "members": {
1139
1139
  "Name": {},
1140
1140
  "IncludeFilters": {
1141
- "shape": "S49"
1141
+ "shape": "S4a"
1142
1142
  },
1143
1143
  "ExcludeFilters": {
1144
- "shape": "S49"
1144
+ "shape": "S4a"
1145
1145
  },
1146
1146
  "FirehoseArn": {},
1147
1147
  "RoleArn": {},
1148
1148
  "OutputFormat": {},
1149
1149
  "Tags": {
1150
- "shape": "S52"
1150
+ "shape": "S53"
1151
1151
  }
1152
1152
  }
1153
1153
  },
@@ -1183,7 +1183,7 @@
1183
1183
  ],
1184
1184
  "members": {
1185
1185
  "Names": {
1186
- "shape": "S5t"
1186
+ "shape": "S5u"
1187
1187
  }
1188
1188
  }
1189
1189
  },
@@ -1201,7 +1201,7 @@
1201
1201
  ],
1202
1202
  "members": {
1203
1203
  "Names": {
1204
- "shape": "S5t"
1204
+ "shape": "S5u"
1205
1205
  }
1206
1206
  }
1207
1207
  },
@@ -1221,7 +1221,7 @@
1221
1221
  "members": {
1222
1222
  "ResourceARN": {},
1223
1223
  "Tags": {
1224
- "shape": "S52"
1224
+ "shape": "S53"
1225
1225
  }
1226
1226
  }
1227
1227
  },
@@ -1422,7 +1422,8 @@
1422
1422
  },
1423
1423
  "Period": {
1424
1424
  "type": "integer"
1425
- }
1425
+ },
1426
+ "AccountId": {}
1426
1427
  }
1427
1428
  }
1428
1429
  },
@@ -1441,7 +1442,7 @@
1441
1442
  "Dimensions"
1442
1443
  ]
1443
1444
  },
1444
- "S2e": {
1445
+ "S2f": {
1445
1446
  "type": "structure",
1446
1447
  "members": {
1447
1448
  "ExcludedTimeRanges": {
@@ -1469,7 +1470,7 @@
1469
1470
  "MetricTimezone": {}
1470
1471
  }
1471
1472
  },
1472
- "S3v": {
1473
+ "S3w": {
1473
1474
  "type": "list",
1474
1475
  "member": {
1475
1476
  "type": "structure",
@@ -1479,7 +1480,7 @@
1479
1480
  }
1480
1481
  }
1481
1482
  },
1482
- "S49": {
1483
+ "S4a": {
1483
1484
  "type": "list",
1484
1485
  "member": {
1485
1486
  "type": "structure",
@@ -1488,7 +1489,7 @@
1488
1489
  }
1489
1490
  }
1490
1491
  },
1491
- "S52": {
1492
+ "S53": {
1492
1493
  "type": "list",
1493
1494
  "member": {
1494
1495
  "type": "structure",
@@ -1502,7 +1503,7 @@
1502
1503
  }
1503
1504
  }
1504
1505
  },
1505
- "S5t": {
1506
+ "S5u": {
1506
1507
  "type": "list",
1507
1508
  "member": {}
1508
1509
  }