Skip to content

Commit 96eec1c

Browse files
author
awstools
committed
Updates SDK to v2.975.0
1 parent 223bd59 commit 96eec1c

23 files changed

+1451
-359
lines changed

.changes/2.975.0.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "IotData",
5+
"description": "Updated Publish with support for new Retain flag and added two new API operations: GetRetainedMessage, ListRetainedMessages."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "MediaConvert",
10+
"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."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Polly",
15+
"description": "Amazon Polly adds new New Zealand English voice - Aria. Aria is available as Neural voice only."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "SSM",
20+
"description": "Updated Parameter Store property for logging improvements."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "TranscribeService",
25+
"description": "This release adds support for feature tagging with Amazon Transcribe batch jobs."
26+
}
27+
]

CHANGELOG.md

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

5+
## 2.975.0
6+
* feature: IotData: Updated Publish with support for new Retain flag and added two new API operations: GetRetainedMessage, ListRetainedMessages.
7+
* 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.
8+
* feature: Polly: Amazon Polly adds new New Zealand English voice - Aria. Aria is available as Neural voice only.
9+
* feature: SSM: Updated Parameter Store property for logging improvements.
10+
* feature: TranscribeService: This release adds support for feature tagging with Amazon Transcribe batch jobs.
11+
512
## 2.974.0
613
* 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
714
* feature: Backup: AWS Backup - Features: Evaluate your backup activity and generate audit reports.

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.974.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.975.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/iot-data-2015-05-28.min.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,39 @@
4545
"payload": "payload"
4646
}
4747
},
48+
"GetRetainedMessage": {
49+
"http": {
50+
"method": "GET",
51+
"requestUri": "/retainedMessage/{topic}"
52+
},
53+
"input": {
54+
"type": "structure",
55+
"required": [
56+
"topic"
57+
],
58+
"members": {
59+
"topic": {
60+
"location": "uri",
61+
"locationName": "topic"
62+
}
63+
}
64+
},
65+
"output": {
66+
"type": "structure",
67+
"members": {
68+
"topic": {},
69+
"payload": {
70+
"type": "blob"
71+
},
72+
"qos": {
73+
"type": "integer"
74+
},
75+
"lastModifiedTime": {
76+
"type": "long"
77+
}
78+
}
79+
}
80+
},
4881
"GetThingShadow": {
4982
"http": {
5083
"method": "GET",
@@ -116,6 +149,50 @@
116149
}
117150
}
118151
},
152+
"ListRetainedMessages": {
153+
"http": {
154+
"method": "GET",
155+
"requestUri": "/retainedMessage"
156+
},
157+
"input": {
158+
"type": "structure",
159+
"members": {
160+
"nextToken": {
161+
"location": "querystring",
162+
"locationName": "nextToken"
163+
},
164+
"maxResults": {
165+
"location": "querystring",
166+
"locationName": "maxResults",
167+
"type": "integer"
168+
}
169+
}
170+
},
171+
"output": {
172+
"type": "structure",
173+
"members": {
174+
"retainedTopics": {
175+
"type": "list",
176+
"member": {
177+
"type": "structure",
178+
"members": {
179+
"topic": {},
180+
"payloadSize": {
181+
"type": "long"
182+
},
183+
"qos": {
184+
"type": "integer"
185+
},
186+
"lastModifiedTime": {
187+
"type": "long"
188+
}
189+
}
190+
}
191+
},
192+
"nextToken": {}
193+
}
194+
}
195+
},
119196
"Publish": {
120197
"http": {
121198
"requestUri": "/topics/{topic}"
@@ -135,6 +212,11 @@
135212
"locationName": "qos",
136213
"type": "integer"
137214
},
215+
"retain": {
216+
"location": "querystring",
217+
"locationName": "retain",
218+
"type": "boolean"
219+
},
138220
"payload": {
139221
"type": "blob"
140222
}

0 commit comments

Comments
 (0)