aws-sdk 2.1180.0 → 2.1181.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/CHANGELOG.md +9 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.min.json +101 -0
- package/apis/iotdeviceadvisor-2020-09-18.min.json +33 -12
- package/apis/medialive-2017-10-14.min.json +50 -3
- package/apis/rds-2014-10-31.min.json +143 -119
- package/apis/transcribe-2017-10-26.min.json +2 -1
- package/clients/account.d.ts +104 -6
- package/clients/ec2.d.ts +1 -1
- package/clients/iotdeviceadvisor.d.ts +49 -0
- package/clients/medialive.d.ts +37 -0
- package/clients/rds.d.ts +52 -2
- package/clients/transcribeservice.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +146 -122
- package/dist/aws-sdk.min.js +27 -27
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1181.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1181.0
|
|
6
|
+
* feature: Account: This release enables customers to manage the primary contact information for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/API_Operations.html
|
|
7
|
+
* feature: EC2: Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac.
|
|
8
|
+
* feature: IotDeviceAdvisor: Added new service feature (Early access only) - Long Duration Test, where customers can test the IoT device to observe how it behaves when the device is in operation for longer period.
|
|
9
|
+
* feature: MediaLive: Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
|
|
10
|
+
* feature: RDS: This release adds the "ModifyActivityStream" API with support for audit policy state locking and unlocking.
|
|
11
|
+
* feature: TranscribeService: Remove unsupported language codes for StartTranscriptionJob and update VocabularyFileUri for UpdateMedicalVocabulary
|
|
12
|
+
|
|
5
13
|
## 2.1180.0
|
|
6
14
|
* feature: Athena: This feature allows customers to retrieve runtime statistics for completed queries
|
|
7
15
|
* feature: CloudWatch: Adding support for the suppression of Composite Alarm actions
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1181.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -68,6 +68,26 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
+
"GetContactInformation": {
|
|
72
|
+
"http": {
|
|
73
|
+
"requestUri": "/getContactInformation",
|
|
74
|
+
"responseCode": 200
|
|
75
|
+
},
|
|
76
|
+
"input": {
|
|
77
|
+
"type": "structure",
|
|
78
|
+
"members": {
|
|
79
|
+
"AccountId": {}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"output": {
|
|
83
|
+
"type": "structure",
|
|
84
|
+
"members": {
|
|
85
|
+
"ContactInformation": {
|
|
86
|
+
"shape": "Sd"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
71
91
|
"PutAlternateContact": {
|
|
72
92
|
"http": {
|
|
73
93
|
"requestUri": "/putAlternateContact",
|
|
@@ -100,6 +120,25 @@
|
|
|
100
120
|
}
|
|
101
121
|
},
|
|
102
122
|
"idempotent": true
|
|
123
|
+
},
|
|
124
|
+
"PutContactInformation": {
|
|
125
|
+
"http": {
|
|
126
|
+
"requestUri": "/putContactInformation",
|
|
127
|
+
"responseCode": 200
|
|
128
|
+
},
|
|
129
|
+
"input": {
|
|
130
|
+
"type": "structure",
|
|
131
|
+
"required": [
|
|
132
|
+
"ContactInformation"
|
|
133
|
+
],
|
|
134
|
+
"members": {
|
|
135
|
+
"AccountId": {},
|
|
136
|
+
"ContactInformation": {
|
|
137
|
+
"shape": "Sd"
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"idempotent": true
|
|
103
142
|
}
|
|
104
143
|
},
|
|
105
144
|
"shapes": {
|
|
@@ -118,6 +157,68 @@
|
|
|
118
157
|
"Sa": {
|
|
119
158
|
"type": "string",
|
|
120
159
|
"sensitive": true
|
|
160
|
+
},
|
|
161
|
+
"Sd": {
|
|
162
|
+
"type": "structure",
|
|
163
|
+
"required": [
|
|
164
|
+
"AddressLine1",
|
|
165
|
+
"City",
|
|
166
|
+
"CountryCode",
|
|
167
|
+
"FullName",
|
|
168
|
+
"PhoneNumber",
|
|
169
|
+
"PostalCode"
|
|
170
|
+
],
|
|
171
|
+
"members": {
|
|
172
|
+
"AddressLine1": {
|
|
173
|
+
"shape": "Se"
|
|
174
|
+
},
|
|
175
|
+
"AddressLine2": {
|
|
176
|
+
"shape": "Se"
|
|
177
|
+
},
|
|
178
|
+
"AddressLine3": {
|
|
179
|
+
"shape": "Se"
|
|
180
|
+
},
|
|
181
|
+
"City": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"sensitive": true
|
|
184
|
+
},
|
|
185
|
+
"CompanyName": {
|
|
186
|
+
"type": "string",
|
|
187
|
+
"sensitive": true
|
|
188
|
+
},
|
|
189
|
+
"CountryCode": {
|
|
190
|
+
"type": "string",
|
|
191
|
+
"sensitive": true
|
|
192
|
+
},
|
|
193
|
+
"DistrictOrCounty": {
|
|
194
|
+
"type": "string",
|
|
195
|
+
"sensitive": true
|
|
196
|
+
},
|
|
197
|
+
"FullName": {
|
|
198
|
+
"type": "string",
|
|
199
|
+
"sensitive": true
|
|
200
|
+
},
|
|
201
|
+
"PhoneNumber": {
|
|
202
|
+
"type": "string",
|
|
203
|
+
"sensitive": true
|
|
204
|
+
},
|
|
205
|
+
"PostalCode": {
|
|
206
|
+
"type": "string",
|
|
207
|
+
"sensitive": true
|
|
208
|
+
},
|
|
209
|
+
"StateOrRegion": {
|
|
210
|
+
"type": "string",
|
|
211
|
+
"sensitive": true
|
|
212
|
+
},
|
|
213
|
+
"WebsiteUrl": {
|
|
214
|
+
"type": "string",
|
|
215
|
+
"sensitive": true
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"Se": {
|
|
220
|
+
"type": "string",
|
|
221
|
+
"sensitive": true
|
|
121
222
|
}
|
|
122
223
|
}
|
|
123
224
|
}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"shape": "S2"
|
|
25
25
|
},
|
|
26
26
|
"tags": {
|
|
27
|
-
"shape": "
|
|
27
|
+
"shape": "Sb"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
},
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"type": "timestamp"
|
|
126
126
|
},
|
|
127
127
|
"tags": {
|
|
128
|
-
"shape": "
|
|
128
|
+
"shape": "Sb"
|
|
129
129
|
}
|
|
130
130
|
}
|
|
131
131
|
}
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"suiteRunId": {},
|
|
161
161
|
"suiteRunArn": {},
|
|
162
162
|
"suiteRunConfiguration": {
|
|
163
|
-
"shape": "
|
|
163
|
+
"shape": "Sr"
|
|
164
164
|
},
|
|
165
165
|
"testResult": {
|
|
166
166
|
"type": "structure",
|
|
@@ -189,7 +189,20 @@
|
|
|
189
189
|
},
|
|
190
190
|
"logUrl": {},
|
|
191
191
|
"warnings": {},
|
|
192
|
-
"failure": {}
|
|
192
|
+
"failure": {},
|
|
193
|
+
"testScenarios": {
|
|
194
|
+
"type": "list",
|
|
195
|
+
"member": {
|
|
196
|
+
"type": "structure",
|
|
197
|
+
"members": {
|
|
198
|
+
"testCaseScenarioId": {},
|
|
199
|
+
"testCaseScenarioType": {},
|
|
200
|
+
"status": {},
|
|
201
|
+
"failure": {},
|
|
202
|
+
"systemMessage": {}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
193
206
|
}
|
|
194
207
|
}
|
|
195
208
|
}
|
|
@@ -207,7 +220,7 @@
|
|
|
207
220
|
"status": {},
|
|
208
221
|
"errorReason": {},
|
|
209
222
|
"tags": {
|
|
210
|
-
"shape": "
|
|
223
|
+
"shape": "Sb"
|
|
211
224
|
}
|
|
212
225
|
}
|
|
213
226
|
}
|
|
@@ -276,6 +289,10 @@
|
|
|
276
289
|
"intendedForQualification": {
|
|
277
290
|
"type": "boolean"
|
|
278
291
|
},
|
|
292
|
+
"isLongDurationTest": {
|
|
293
|
+
"type": "boolean"
|
|
294
|
+
},
|
|
295
|
+
"protocol": {},
|
|
279
296
|
"createdAt": {
|
|
280
297
|
"type": "timestamp"
|
|
281
298
|
}
|
|
@@ -369,7 +386,7 @@
|
|
|
369
386
|
"type": "structure",
|
|
370
387
|
"members": {
|
|
371
388
|
"tags": {
|
|
372
|
-
"shape": "
|
|
389
|
+
"shape": "Sb"
|
|
373
390
|
}
|
|
374
391
|
}
|
|
375
392
|
}
|
|
@@ -390,10 +407,10 @@
|
|
|
390
407
|
},
|
|
391
408
|
"suiteDefinitionVersion": {},
|
|
392
409
|
"suiteRunConfiguration": {
|
|
393
|
-
"shape": "
|
|
410
|
+
"shape": "Sr"
|
|
394
411
|
},
|
|
395
412
|
"tags": {
|
|
396
|
-
"shape": "
|
|
413
|
+
"shape": "Sb"
|
|
397
414
|
}
|
|
398
415
|
}
|
|
399
416
|
},
|
|
@@ -450,7 +467,7 @@
|
|
|
450
467
|
"locationName": "resourceArn"
|
|
451
468
|
},
|
|
452
469
|
"tags": {
|
|
453
|
-
"shape": "
|
|
470
|
+
"shape": "Sb"
|
|
454
471
|
}
|
|
455
472
|
}
|
|
456
473
|
},
|
|
@@ -536,8 +553,12 @@
|
|
|
536
553
|
"intendedForQualification": {
|
|
537
554
|
"type": "boolean"
|
|
538
555
|
},
|
|
556
|
+
"isLongDurationTest": {
|
|
557
|
+
"type": "boolean"
|
|
558
|
+
},
|
|
539
559
|
"rootGroup": {},
|
|
540
|
-
"devicePermissionRoleArn": {}
|
|
560
|
+
"devicePermissionRoleArn": {},
|
|
561
|
+
"protocol": {}
|
|
541
562
|
}
|
|
542
563
|
},
|
|
543
564
|
"S4": {
|
|
@@ -553,12 +574,12 @@
|
|
|
553
574
|
"certificateArn": {}
|
|
554
575
|
}
|
|
555
576
|
},
|
|
556
|
-
"
|
|
577
|
+
"Sb": {
|
|
557
578
|
"type": "map",
|
|
558
579
|
"key": {},
|
|
559
580
|
"value": {}
|
|
560
581
|
},
|
|
561
|
-
"
|
|
582
|
+
"Sr": {
|
|
562
583
|
"type": "structure",
|
|
563
584
|
"members": {
|
|
564
585
|
"primaryDevice": {
|
|
@@ -2289,6 +2289,31 @@
|
|
|
2289
2289
|
}
|
|
2290
2290
|
}
|
|
2291
2291
|
},
|
|
2292
|
+
"RebootInputDevice": {
|
|
2293
|
+
"http": {
|
|
2294
|
+
"requestUri": "/prod/inputDevices/{inputDeviceId}/reboot",
|
|
2295
|
+
"responseCode": 200
|
|
2296
|
+
},
|
|
2297
|
+
"input": {
|
|
2298
|
+
"type": "structure",
|
|
2299
|
+
"members": {
|
|
2300
|
+
"Force": {
|
|
2301
|
+
"locationName": "force"
|
|
2302
|
+
},
|
|
2303
|
+
"InputDeviceId": {
|
|
2304
|
+
"location": "uri",
|
|
2305
|
+
"locationName": "inputDeviceId"
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2308
|
+
"required": [
|
|
2309
|
+
"InputDeviceId"
|
|
2310
|
+
]
|
|
2311
|
+
},
|
|
2312
|
+
"output": {
|
|
2313
|
+
"type": "structure",
|
|
2314
|
+
"members": {}
|
|
2315
|
+
}
|
|
2316
|
+
},
|
|
2292
2317
|
"RejectInputDeviceTransfer": {
|
|
2293
2318
|
"http": {
|
|
2294
2319
|
"requestUri": "/prod/inputDevices/{inputDeviceId}/reject",
|
|
@@ -2399,6 +2424,28 @@
|
|
|
2399
2424
|
}
|
|
2400
2425
|
}
|
|
2401
2426
|
},
|
|
2427
|
+
"StartInputDeviceMaintenanceWindow": {
|
|
2428
|
+
"http": {
|
|
2429
|
+
"requestUri": "/prod/inputDevices/{inputDeviceId}/startInputDeviceMaintenanceWindow",
|
|
2430
|
+
"responseCode": 200
|
|
2431
|
+
},
|
|
2432
|
+
"input": {
|
|
2433
|
+
"type": "structure",
|
|
2434
|
+
"members": {
|
|
2435
|
+
"InputDeviceId": {
|
|
2436
|
+
"location": "uri",
|
|
2437
|
+
"locationName": "inputDeviceId"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"required": [
|
|
2441
|
+
"InputDeviceId"
|
|
2442
|
+
]
|
|
2443
|
+
},
|
|
2444
|
+
"output": {
|
|
2445
|
+
"type": "structure",
|
|
2446
|
+
"members": {}
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
2402
2449
|
"StartMultiplex": {
|
|
2403
2450
|
"http": {
|
|
2404
2451
|
"requestUri": "/prod/multiplexes/{multiplexId}/start",
|
|
@@ -2816,7 +2863,7 @@
|
|
|
2816
2863
|
"type": "structure",
|
|
2817
2864
|
"members": {
|
|
2818
2865
|
"HdDeviceSettings": {
|
|
2819
|
-
"shape": "
|
|
2866
|
+
"shape": "Sk5",
|
|
2820
2867
|
"locationName": "hdDeviceSettings"
|
|
2821
2868
|
},
|
|
2822
2869
|
"InputDeviceId": {
|
|
@@ -2827,7 +2874,7 @@
|
|
|
2827
2874
|
"locationName": "name"
|
|
2828
2875
|
},
|
|
2829
2876
|
"UhdDeviceSettings": {
|
|
2830
|
-
"shape": "
|
|
2877
|
+
"shape": "Sk5",
|
|
2831
2878
|
"locationName": "uhdDeviceSettings"
|
|
2832
2879
|
}
|
|
2833
2880
|
},
|
|
@@ -7058,7 +7105,7 @@
|
|
|
7058
7105
|
}
|
|
7059
7106
|
}
|
|
7060
7107
|
},
|
|
7061
|
-
"
|
|
7108
|
+
"Sk5": {
|
|
7062
7109
|
"type": "structure",
|
|
7063
7110
|
"members": {
|
|
7064
7111
|
"ConfiguredInput": {
|