Skip to content

Commit

Permalink
Updates SDK to v2.1189.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 4, 2022
1 parent 6848aaa commit 784859f
Show file tree
Hide file tree
Showing 19 changed files with 1,025 additions and 545 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1189.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "ChimeSDKMeetings",
"description": "Adds support for Tags on Amazon Chime SDK WebRTC sessions"
},
{
"type": "feature",
"category": "ConfigService",
"description": "Add resourceType enums for Athena, GlobalAccelerator, Detective and EC2 types"
},
{
"type": "feature",
"category": "Iot",
"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."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1188.0-->
<!--LATEST=2.1189.0-->
<!--ENTRYINSERT-->

## 2.1189.0
* feature: ChimeSDKMeetings: Adds support for Tags on Amazon Chime SDK WebRTC sessions
* feature: ConfigService: Add resourceType enums for Athena, GlobalAccelerator, Detective and EC2 types
* 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.

## 2.1188.0
* feature: CognitoIdentityServiceProvider: Add a new exception type, ForbiddenException, that is returned when request is not allowed
* feature: WAFV2: You can now associate an AWS WAF web ACL with an Amazon Cognito user pool.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1188.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1189.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
105 changes: 100 additions & 5 deletions apis/chime-sdk-meetings-2021-07-15.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,17 @@
"PrimaryMeetingId": {},
"TenantIds": {
"shape": "Su"
},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {
"Meeting": {
"shape": "Sx"
"shape": "S11"
}
}
}
Expand Down Expand Up @@ -197,14 +200,17 @@
"PrimaryMeetingId": {},
"TenantIds": {
"shape": "Su"
},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {
"Meeting": {
"shape": "Sx"
"shape": "S11"
},
"Attendees": {
"shape": "S9"
Expand Down Expand Up @@ -310,7 +316,7 @@
"type": "structure",
"members": {
"Meeting": {
"shape": "Sx"
"shape": "S11"
}
}
}
Expand Down Expand Up @@ -352,6 +358,33 @@
}
}
},
"ListTagsForResource": {
"http": {
"method": "GET",
"requestUri": "/tags",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"ResourceARN"
],
"members": {
"ResourceARN": {
"location": "querystring",
"locationName": "arn"
}
}
},
"output": {
"type": "structure",
"members": {
"Tags": {
"shape": "Sw"
}
}
}
},
"StartMeetingTranscription": {
"http": {
"requestUri": "/meetings/{MeetingId}/transcription?operation=start",
Expand Down Expand Up @@ -433,6 +466,53 @@
}
}
},
"TagResource": {
"http": {
"requestUri": "/tags?operation=tag-resource",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"ResourceARN",
"Tags"
],
"members": {
"ResourceARN": {},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"http": {
"requestUri": "/tags?operation=untag-resource",
"responseCode": 204
},
"input": {
"type": "structure",
"required": [
"ResourceARN",
"TagKeys"
],
"members": {
"ResourceARN": {},
"TagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UpdateAttendeeCapabilities": {
"http": {
"method": "PUT",
Expand Down Expand Up @@ -577,7 +657,21 @@
"type": "list",
"member": {}
},
"Sx": {
"Sw": {
"type": "list",
"member": {
"type": "structure",
"required": [
"Key",
"Value"
],
"members": {
"Key": {},
"Value": {}
}
}
},
"S11": {
"type": "structure",
"members": {
"MeetingId": {},
Expand Down Expand Up @@ -607,7 +701,8 @@
"PrimaryMeetingId": {},
"TenantIds": {
"shape": "Su"
}
},
"MeetingArn": {}
}
}
}
Expand Down
Loading

0 comments on commit 784859f

Please sign in to comment.