Skip to content

Commit

Permalink
Updates SDK to v2.975.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 24, 2021
1 parent 223bd59 commit 96eec1c
Show file tree
Hide file tree
Showing 23 changed files with 1,451 additions and 359 deletions.
27 changes: 27 additions & 0 deletions .changes/2.975.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "IotData",
"description": "Updated Publish with support for new Retain flag and added two new API operations: GetRetainedMessage, ListRetainedMessages."
},
{
"type": "feature",
"category": "MediaConvert",
"description": "AWS Elemental MediaConvert SDK has added MBAFF encoding support for AVC video and the ability to pass encryption context from the job settings to S3."
},
{
"type": "feature",
"category": "Polly",
"description": "Amazon Polly adds new New Zealand English voice - Aria. Aria is available as Neural voice only."
},
{
"type": "feature",
"category": "SSM",
"description": "Updated Parameter Store property for logging improvements."
},
{
"type": "feature",
"category": "TranscribeService",
"description": "This release adds support for feature tagging with Amazon Transcribe batch jobs."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.974.0-->
<!--LATEST=2.975.0-->
<!--ENTRYINSERT-->

## 2.975.0
* feature: IotData: Updated Publish with support for new Retain flag and added two new API operations: GetRetainedMessage, ListRetainedMessages.
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added MBAFF encoding support for AVC video and the ability to pass encryption context from the job settings to S3.
* feature: Polly: Amazon Polly adds new New Zealand English voice - Aria. Aria is available as Neural voice only.
* feature: SSM: Updated Parameter Store property for logging improvements.
* feature: TranscribeService: This release adds support for feature tagging with Amazon Transcribe batch jobs.

## 2.974.0
* feature: APIGateway: Adding some of the pending releases (1) Adding WAF Filter to GatewayResponseType enum (2) Ensuring consistent error model for all operations (3) Add missing BRE to GetVpcLink operation
* feature: Backup: AWS Backup - Features: Evaluate your backup activity and generate audit reports.
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.974.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.975.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
82 changes: 82 additions & 0 deletions apis/iot-data-2015-05-28.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,39 @@
"payload": "payload"
}
},
"GetRetainedMessage": {
"http": {
"method": "GET",
"requestUri": "/retainedMessage/{topic}"
},
"input": {
"type": "structure",
"required": [
"topic"
],
"members": {
"topic": {
"location": "uri",
"locationName": "topic"
}
}
},
"output": {
"type": "structure",
"members": {
"topic": {},
"payload": {
"type": "blob"
},
"qos": {
"type": "integer"
},
"lastModifiedTime": {
"type": "long"
}
}
}
},
"GetThingShadow": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -116,6 +149,50 @@
}
}
},
"ListRetainedMessages": {
"http": {
"method": "GET",
"requestUri": "/retainedMessage"
},
"input": {
"type": "structure",
"members": {
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"retainedTopics": {
"type": "list",
"member": {
"type": "structure",
"members": {
"topic": {},
"payloadSize": {
"type": "long"
},
"qos": {
"type": "integer"
},
"lastModifiedTime": {
"type": "long"
}
}
}
},
"nextToken": {}
}
}
},
"Publish": {
"http": {
"requestUri": "/topics/{topic}"
Expand All @@ -135,6 +212,11 @@
"locationName": "qos",
"type": "integer"
},
"retain": {
"location": "querystring",
"locationName": "retain",
"type": "boolean"
},
"payload": {
"type": "blob"
}
Expand Down
Loading

0 comments on commit 96eec1c

Please sign in to comment.