Skip to content

Commit 784859f

Browse files
author
awstools
committed
Updates SDK to v2.1189.0
1 parent 6848aaa commit 784859f

19 files changed

+1025
-545
lines changed

.changes/2.1189.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "ChimeSDKMeetings",
5+
"description": "Adds support for Tags on Amazon Chime SDK WebRTC sessions"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "ConfigService",
10+
"description": "Add resourceType enums for Athena, GlobalAccelerator, Detective and EC2 types"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Iot",
15+
"description": "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."
16+
}
17+
]

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1188.0-->
2+
<!--LATEST=2.1189.0-->
33
<!--ENTRYINSERT-->
44

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+
510
## 2.1188.0
611
* feature: CognitoIdentityServiceProvider: Add a new exception type, ForbiddenException, that is returned when request is not allowed
712
* feature: WAFV2: You can now associate an AWS WAF web ACL with an Amazon Cognito user pool.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

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>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/chime-sdk-meetings-2021-07-15.min.json

Lines changed: 100 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,17 @@
146146
"PrimaryMeetingId": {},
147147
"TenantIds": {
148148
"shape": "Su"
149+
},
150+
"Tags": {
151+
"shape": "Sw"
149152
}
150153
}
151154
},
152155
"output": {
153156
"type": "structure",
154157
"members": {
155158
"Meeting": {
156-
"shape": "Sx"
159+
"shape": "S11"
157160
}
158161
}
159162
}
@@ -197,14 +200,17 @@
197200
"PrimaryMeetingId": {},
198201
"TenantIds": {
199202
"shape": "Su"
203+
},
204+
"Tags": {
205+
"shape": "Sw"
200206
}
201207
}
202208
},
203209
"output": {
204210
"type": "structure",
205211
"members": {
206212
"Meeting": {
207-
"shape": "Sx"
213+
"shape": "S11"
208214
},
209215
"Attendees": {
210216
"shape": "S9"
@@ -310,7 +316,7 @@
310316
"type": "structure",
311317
"members": {
312318
"Meeting": {
313-
"shape": "Sx"
319+
"shape": "S11"
314320
}
315321
}
316322
}
@@ -352,6 +358,33 @@
352358
}
353359
}
354360
},
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+
},
355388
"StartMeetingTranscription": {
356389
"http": {
357390
"requestUri": "/meetings/{MeetingId}/transcription?operation=start",
@@ -433,6 +466,53 @@
433466
}
434467
}
435468
},
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+
},
436516
"UpdateAttendeeCapabilities": {
437517
"http": {
438518
"method": "PUT",
@@ -577,7 +657,21 @@
577657
"type": "list",
578658
"member": {}
579659
},
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": {
581675
"type": "structure",
582676
"members": {
583677
"MeetingId": {},
@@ -607,7 +701,8 @@
607701
"PrimaryMeetingId": {},
608702
"TenantIds": {
609703
"shape": "Su"
610-
}
704+
},
705+
"MeetingArn": {}
611706
}
612707
}
613708
}

0 commit comments

Comments
 (0)