Skip to content

Commit

Permalink
Updates SDK to v2.679.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 18, 2020
1 parent 5155fde commit e4d1a07
Show file tree
Hide file tree
Showing 26 changed files with 1,356 additions and 264 deletions.
22 changes: 22 additions & 0 deletions .changes/2.679.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "Chime",
"description": "Amazon Chime now supports redacting chat messages."
},
{
"type": "feature",
"category": "EC2",
"description": "This release changes the RunInstances CLI and SDK's so that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency."
},
{
"type": "feature",
"category": "ECS",
"description": "This release adds support for specifying environment files to add environment variables to your containers."
},
{
"type": "feature",
"category": "QLDB",
"description": "Amazon QLDB now supports Amazon Kinesis data streams. You can now emit QLDB journal data, via the new QLDB Streams feature, directly to Amazon Kinesis supporting event processing and analytics among related use cases."
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.678.0-->
<!--LATEST=2.679.0-->
<!--ENTRYINSERT-->

## 2.679.0
* feature: Chime: Amazon Chime now supports redacting chat messages.
* feature: EC2: This release changes the RunInstances CLI and SDK's so that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
* feature: ECS: This release adds support for specifying environment files to add environment variables to your containers.
* feature: QLDB: Amazon QLDB now supports Amazon Kinesis data streams. You can now emit QLDB journal data, via the new QLDB Streams feature, directly to Amazon Kinesis supporting event processing and analytics among related use cases.

## 2.678.0
* feature: CloudFormation: This release adds support for the following features: 1. DescribeType and ListTypeVersions APIs now output a field IsDefaultVersion, indicating if a version is the default version for its type; 2. Add StackRollbackComplete waiter feature to wait until stack status is UPDATE_ROLLBACK_COMPLETE; 3. Add paginators in DescribeAccountLimits, ListChangeSets, ListStackInstances, ListStackSetOperationResults, ListStackSetOperations, ListStackSets APIs.
* feature: ECR: This release adds support for specifying an image manifest media type when pushing a manifest to Amazon ECR.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ version.
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.678.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.679.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
64 changes: 64 additions & 0 deletions apis/chime-2018-05-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -2714,6 +2714,70 @@
}
}
},
"RedactConversationMessage": {
"http": {
"requestUri": "/accounts/{accountId}/conversations/{conversationId}/messages/{messageId}?operation=redact",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"AccountId",
"ConversationId",
"MessageId"
],
"members": {
"AccountId": {
"location": "uri",
"locationName": "accountId"
},
"ConversationId": {
"location": "uri",
"locationName": "conversationId"
},
"MessageId": {
"location": "uri",
"locationName": "messageId"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"RedactRoomMessage": {
"http": {
"requestUri": "/accounts/{accountId}/rooms/{roomId}/messages/{messageId}?operation=redact",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"AccountId",
"RoomId",
"MessageId"
],
"members": {
"AccountId": {
"location": "uri",
"locationName": "accountId"
},
"RoomId": {
"location": "uri",
"locationName": "roomId"
},
"MessageId": {
"location": "uri",
"locationName": "messageId"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"RegenerateSecurityToken": {
"http": {
"requestUri": "/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token",
Expand Down
140 changes: 140 additions & 0 deletions apis/chime-2018-05-01.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3323,6 +3323,82 @@
],
"documentation": "<p>Adds termination SIP credentials for the specified Amazon Chime Voice Connector.</p>"
},
"RedactConversationMessage": {
"name": "RedactConversationMessage",
"http": {
"method": "POST",
"requestUri": "/accounts/{accountId}/conversations/{conversationId}/messages/{messageId}?operation=redact",
"responseCode": 200
},
"input": {
"shape": "RedactConversationMessageRequest"
},
"output": {
"shape": "RedactConversationMessageResponse"
},
"errors": [
{
"shape": "NotFoundException"
},
{
"shape": "ForbiddenException"
},
{
"shape": "UnauthorizedClientException"
},
{
"shape": "ThrottledClientException"
},
{
"shape": "BadRequestException"
},
{
"shape": "ServiceUnavailableException"
},
{
"shape": "ServiceFailureException"
}
],
"documentation": "<p>Redacts the specified message from the specified Amazon Chime conversation.</p>"
},
"RedactRoomMessage": {
"name": "RedactRoomMessage",
"http": {
"method": "POST",
"requestUri": "/accounts/{accountId}/rooms/{roomId}/messages/{messageId}?operation=redact",
"responseCode": 200
},
"input": {
"shape": "RedactRoomMessageRequest"
},
"output": {
"shape": "RedactRoomMessageResponse"
},
"errors": [
{
"shape": "NotFoundException"
},
{
"shape": "ForbiddenException"
},
{
"shape": "UnauthorizedClientException"
},
{
"shape": "ThrottledClientException"
},
{
"shape": "BadRequestException"
},
{
"shape": "ServiceUnavailableException"
},
{
"shape": "ServiceFailureException"
}
],
"documentation": "<p>Redacts the specified message from the specified Amazon Chime chat room.</p>"
},
"RegenerateSecurityToken": {
"name": "RegenerateSecurityToken",
"http": {
Expand Down Expand Up @@ -7766,6 +7842,70 @@
}
}
},
"RedactConversationMessageRequest": {
"type": "structure",
"required": [
"AccountId",
"ConversationId",
"MessageId"
],
"members": {
"AccountId": {
"shape": "NonEmptyString",
"documentation": "<p>The Amazon Chime account ID.</p>",
"location": "uri",
"locationName": "accountId"
},
"ConversationId": {
"shape": "NonEmptyString",
"documentation": "<p>The conversation ID.</p>",
"location": "uri",
"locationName": "conversationId"
},
"MessageId": {
"shape": "NonEmptyString",
"documentation": "<p>The message ID.</p>",
"location": "uri",
"locationName": "messageId"
}
}
},
"RedactConversationMessageResponse": {
"type": "structure",
"members": {}
},
"RedactRoomMessageRequest": {
"type": "structure",
"required": [
"AccountId",
"RoomId",
"MessageId"
],
"members": {
"AccountId": {
"shape": "NonEmptyString",
"documentation": "<p>The Amazon Chime account ID.</p>",
"location": "uri",
"locationName": "accountId"
},
"RoomId": {
"shape": "NonEmptyString",
"documentation": "<p>The room ID.</p>",
"location": "uri",
"locationName": "roomId"
},
"MessageId": {
"shape": "NonEmptyString",
"documentation": "<p>The message ID.</p>",
"location": "uri",
"locationName": "messageId"
}
}
},
"RedactRoomMessageResponse": {
"type": "structure",
"members": {}
},
"RegenerateSecurityTokenRequest": {
"type": "structure",
"required": [
Expand Down
Loading

0 comments on commit e4d1a07

Please sign in to comment.