aws-sdk 2.1635.0 → 2.1636.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.
- package/README.md +1 -1
- package/apis/account-2021-02-01.min.json +101 -19
- package/apis/firehose-2015-08-04.min.json +205 -159
- package/apis/fsx-2018-03-01.min.json +199 -163
- package/apis/glue-2017-03-31.min.json +176 -143
- package/apis/iotwireless-2020-11-22.min.json +3 -0
- package/apis/location-2020-11-19.min.json +1036 -754
- package/apis/location-2020-11-19.paginators.json +6 -0
- package/apis/sns-2010-03-31.min.json +7 -1
- package/apis/sqs-2012-11-05.min.json +3 -0
- package/apis/storagegateway-2013-06-30.min.json +30 -14
- package/clients/account.d.ts +84 -9
- package/clients/firehose.d.ts +73 -10
- package/clients/fsx.d.ts +62 -18
- package/clients/glue.d.ts +58 -0
- package/clients/iotwireless.d.ts +1 -1
- package/clients/location.d.ts +981 -677
- package/clients/sns.d.ts +7 -7
- package/clients/sqs.d.ts +5 -5
- package/clients/storagegateway.d.ts +31 -16
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +1274 -915
- package/dist/aws-sdk.min.js +56 -56
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1636.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -12,6 +12,36 @@
|
|
12
12
|
"uid": "account-2021-02-01"
|
13
13
|
},
|
14
14
|
"operations": {
|
15
|
+
"AcceptPrimaryEmailUpdate": {
|
16
|
+
"http": {
|
17
|
+
"requestUri": "/acceptPrimaryEmailUpdate",
|
18
|
+
"responseCode": 200
|
19
|
+
},
|
20
|
+
"input": {
|
21
|
+
"type": "structure",
|
22
|
+
"required": [
|
23
|
+
"AccountId",
|
24
|
+
"Otp",
|
25
|
+
"PrimaryEmail"
|
26
|
+
],
|
27
|
+
"members": {
|
28
|
+
"AccountId": {},
|
29
|
+
"Otp": {
|
30
|
+
"type": "string",
|
31
|
+
"sensitive": true
|
32
|
+
},
|
33
|
+
"PrimaryEmail": {
|
34
|
+
"shape": "S4"
|
35
|
+
}
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"output": {
|
39
|
+
"type": "structure",
|
40
|
+
"members": {
|
41
|
+
"Status": {}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
15
45
|
"DeleteAlternateContact": {
|
16
46
|
"http": {
|
17
47
|
"requestUri": "/deleteAlternateContact",
|
@@ -84,16 +114,16 @@
|
|
84
114
|
"members": {
|
85
115
|
"AlternateContactType": {},
|
86
116
|
"EmailAddress": {
|
87
|
-
"shape": "
|
117
|
+
"shape": "Sf"
|
88
118
|
},
|
89
119
|
"Name": {
|
90
|
-
"shape": "
|
120
|
+
"shape": "Sg"
|
91
121
|
},
|
92
122
|
"PhoneNumber": {
|
93
|
-
"shape": "
|
123
|
+
"shape": "Sh"
|
94
124
|
},
|
95
125
|
"Title": {
|
96
|
-
"shape": "
|
126
|
+
"shape": "Si"
|
97
127
|
}
|
98
128
|
}
|
99
129
|
}
|
@@ -115,7 +145,30 @@
|
|
115
145
|
"type": "structure",
|
116
146
|
"members": {
|
117
147
|
"ContactInformation": {
|
118
|
-
"shape": "
|
148
|
+
"shape": "Sl"
|
149
|
+
}
|
150
|
+
}
|
151
|
+
}
|
152
|
+
},
|
153
|
+
"GetPrimaryEmail": {
|
154
|
+
"http": {
|
155
|
+
"requestUri": "/getPrimaryEmail",
|
156
|
+
"responseCode": 200
|
157
|
+
},
|
158
|
+
"input": {
|
159
|
+
"type": "structure",
|
160
|
+
"required": [
|
161
|
+
"AccountId"
|
162
|
+
],
|
163
|
+
"members": {
|
164
|
+
"AccountId": {}
|
165
|
+
}
|
166
|
+
},
|
167
|
+
"output": {
|
168
|
+
"type": "structure",
|
169
|
+
"members": {
|
170
|
+
"PrimaryEmail": {
|
171
|
+
"shape": "S4"
|
119
172
|
}
|
120
173
|
}
|
121
174
|
}
|
@@ -197,16 +250,16 @@
|
|
197
250
|
"AccountId": {},
|
198
251
|
"AlternateContactType": {},
|
199
252
|
"EmailAddress": {
|
200
|
-
"shape": "
|
253
|
+
"shape": "Sf"
|
201
254
|
},
|
202
255
|
"Name": {
|
203
|
-
"shape": "
|
256
|
+
"shape": "Sg"
|
204
257
|
},
|
205
258
|
"PhoneNumber": {
|
206
|
-
"shape": "
|
259
|
+
"shape": "Sh"
|
207
260
|
},
|
208
261
|
"Title": {
|
209
|
-
"shape": "
|
262
|
+
"shape": "Si"
|
210
263
|
}
|
211
264
|
}
|
212
265
|
},
|
@@ -225,31 +278,60 @@
|
|
225
278
|
"members": {
|
226
279
|
"AccountId": {},
|
227
280
|
"ContactInformation": {
|
228
|
-
"shape": "
|
281
|
+
"shape": "Sl"
|
229
282
|
}
|
230
283
|
}
|
231
284
|
},
|
232
285
|
"idempotent": true
|
286
|
+
},
|
287
|
+
"StartPrimaryEmailUpdate": {
|
288
|
+
"http": {
|
289
|
+
"requestUri": "/startPrimaryEmailUpdate",
|
290
|
+
"responseCode": 200
|
291
|
+
},
|
292
|
+
"input": {
|
293
|
+
"type": "structure",
|
294
|
+
"required": [
|
295
|
+
"AccountId",
|
296
|
+
"PrimaryEmail"
|
297
|
+
],
|
298
|
+
"members": {
|
299
|
+
"AccountId": {},
|
300
|
+
"PrimaryEmail": {
|
301
|
+
"shape": "S4"
|
302
|
+
}
|
303
|
+
}
|
304
|
+
},
|
305
|
+
"output": {
|
306
|
+
"type": "structure",
|
307
|
+
"members": {
|
308
|
+
"Status": {}
|
309
|
+
}
|
310
|
+
}
|
233
311
|
}
|
234
312
|
},
|
235
313
|
"shapes": {
|
236
|
-
"
|
314
|
+
"S4": {
|
237
315
|
"type": "string",
|
238
316
|
"sensitive": true
|
239
317
|
},
|
240
|
-
"
|
318
|
+
"Sf": {
|
241
319
|
"type": "string",
|
242
320
|
"sensitive": true
|
243
321
|
},
|
244
|
-
"
|
322
|
+
"Sg": {
|
245
323
|
"type": "string",
|
246
324
|
"sensitive": true
|
247
325
|
},
|
248
|
-
"
|
326
|
+
"Sh": {
|
249
327
|
"type": "string",
|
250
328
|
"sensitive": true
|
251
329
|
},
|
252
|
-
"
|
330
|
+
"Si": {
|
331
|
+
"type": "string",
|
332
|
+
"sensitive": true
|
333
|
+
},
|
334
|
+
"Sl": {
|
253
335
|
"type": "structure",
|
254
336
|
"required": [
|
255
337
|
"AddressLine1",
|
@@ -261,13 +343,13 @@
|
|
261
343
|
],
|
262
344
|
"members": {
|
263
345
|
"AddressLine1": {
|
264
|
-
"shape": "
|
346
|
+
"shape": "Sm"
|
265
347
|
},
|
266
348
|
"AddressLine2": {
|
267
|
-
"shape": "
|
349
|
+
"shape": "Sm"
|
268
350
|
},
|
269
351
|
"AddressLine3": {
|
270
|
-
"shape": "
|
352
|
+
"shape": "Sm"
|
271
353
|
},
|
272
354
|
"City": {
|
273
355
|
"type": "string",
|
@@ -307,7 +389,7 @@
|
|
307
389
|
}
|
308
390
|
}
|
309
391
|
},
|
310
|
-
"
|
392
|
+
"Sm": {
|
311
393
|
"type": "string",
|
312
394
|
"sensitive": true
|
313
395
|
}
|