aws-sdk 2.1188.0 → 2.1189.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 CHANGED
@@ -1,7 +1,12 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1188.0-->
2
+ <!--LATEST=2.1189.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1189.0
6
+ * feature: ChimeSDKMeetings: Adds support for Tags on Amazon Chime SDK WebRTC sessions
7
+ * feature: ConfigService: Add resourceType enums for Athena, GlobalAccelerator, Detective and EC2 types
8
+ * feature: Iot: The release is to support attach a provisioning template to CACert for JITP function, Customer now doesn't have to hardcode a roleArn and templateBody during register a CACert to enable JITP.
9
+
5
10
  ## 2.1188.0
6
11
  * feature: CognitoIdentityServiceProvider: Add a new exception type, ForbiddenException, that is returned when request is not allowed
7
12
  * feature: WAFV2: You can now associate an AWS WAF web ACL with an Amazon Cognito user pool.
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.1188.0.min.js"></script>
32
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1189.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
@@ -146,6 +146,9 @@
146
146
  "PrimaryMeetingId": {},
147
147
  "TenantIds": {
148
148
  "shape": "Su"
149
+ },
150
+ "Tags": {
151
+ "shape": "Sw"
149
152
  }
150
153
  }
151
154
  },
@@ -153,7 +156,7 @@
153
156
  "type": "structure",
154
157
  "members": {
155
158
  "Meeting": {
156
- "shape": "Sx"
159
+ "shape": "S11"
157
160
  }
158
161
  }
159
162
  }
@@ -197,6 +200,9 @@
197
200
  "PrimaryMeetingId": {},
198
201
  "TenantIds": {
199
202
  "shape": "Su"
203
+ },
204
+ "Tags": {
205
+ "shape": "Sw"
200
206
  }
201
207
  }
202
208
  },
@@ -204,7 +210,7 @@
204
210
  "type": "structure",
205
211
  "members": {
206
212
  "Meeting": {
207
- "shape": "Sx"
213
+ "shape": "S11"
208
214
  },
209
215
  "Attendees": {
210
216
  "shape": "S9"
@@ -310,7 +316,7 @@
310
316
  "type": "structure",
311
317
  "members": {
312
318
  "Meeting": {
313
- "shape": "Sx"
319
+ "shape": "S11"
314
320
  }
315
321
  }
316
322
  }
@@ -352,6 +358,33 @@
352
358
  }
353
359
  }
354
360
  },
361
+ "ListTagsForResource": {
362
+ "http": {
363
+ "method": "GET",
364
+ "requestUri": "/tags",
365
+ "responseCode": 200
366
+ },
367
+ "input": {
368
+ "type": "structure",
369
+ "required": [
370
+ "ResourceARN"
371
+ ],
372
+ "members": {
373
+ "ResourceARN": {
374
+ "location": "querystring",
375
+ "locationName": "arn"
376
+ }
377
+ }
378
+ },
379
+ "output": {
380
+ "type": "structure",
381
+ "members": {
382
+ "Tags": {
383
+ "shape": "Sw"
384
+ }
385
+ }
386
+ }
387
+ },
355
388
  "StartMeetingTranscription": {
356
389
  "http": {
357
390
  "requestUri": "/meetings/{MeetingId}/transcription?operation=start",
@@ -433,6 +466,53 @@
433
466
  }
434
467
  }
435
468
  },
469
+ "TagResource": {
470
+ "http": {
471
+ "requestUri": "/tags?operation=tag-resource",
472
+ "responseCode": 204
473
+ },
474
+ "input": {
475
+ "type": "structure",
476
+ "required": [
477
+ "ResourceARN",
478
+ "Tags"
479
+ ],
480
+ "members": {
481
+ "ResourceARN": {},
482
+ "Tags": {
483
+ "shape": "Sw"
484
+ }
485
+ }
486
+ },
487
+ "output": {
488
+ "type": "structure",
489
+ "members": {}
490
+ }
491
+ },
492
+ "UntagResource": {
493
+ "http": {
494
+ "requestUri": "/tags?operation=untag-resource",
495
+ "responseCode": 204
496
+ },
497
+ "input": {
498
+ "type": "structure",
499
+ "required": [
500
+ "ResourceARN",
501
+ "TagKeys"
502
+ ],
503
+ "members": {
504
+ "ResourceARN": {},
505
+ "TagKeys": {
506
+ "type": "list",
507
+ "member": {}
508
+ }
509
+ }
510
+ },
511
+ "output": {
512
+ "type": "structure",
513
+ "members": {}
514
+ }
515
+ },
436
516
  "UpdateAttendeeCapabilities": {
437
517
  "http": {
438
518
  "method": "PUT",
@@ -577,7 +657,21 @@
577
657
  "type": "list",
578
658
  "member": {}
579
659
  },
580
- "Sx": {
660
+ "Sw": {
661
+ "type": "list",
662
+ "member": {
663
+ "type": "structure",
664
+ "required": [
665
+ "Key",
666
+ "Value"
667
+ ],
668
+ "members": {
669
+ "Key": {},
670
+ "Value": {}
671
+ }
672
+ }
673
+ },
674
+ "S11": {
581
675
  "type": "structure",
582
676
  "members": {
583
677
  "MeetingId": {},
@@ -607,7 +701,8 @@
607
701
  "PrimaryMeetingId": {},
608
702
  "TenantIds": {
609
703
  "shape": "Su"
610
- }
704
+ },
705
+ "MeetingArn": {}
611
706
  }
612
707
  }
613
708
  }