Skip to content

Commit 5a90834

Browse files
author
awstools
committed
Updates SDK to v2.1559.0
1 parent 683c184 commit 5a90834

39 files changed

+2040
-420
lines changed

.changes/2.1559.0.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Artifact",
5+
"description": "This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "CodePipeline",
10+
"description": "Add ability to override timeout on action level."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "GuardDuty",
15+
"description": "Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "HealthLake",
20+
"description": "This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "OpenSearch",
25+
"description": "Adds additional supported instance types."
26+
},
27+
{
28+
"type": "feature",
29+
"category": "Polly",
30+
"description": "Amazon Polly adds 1 new voice - Burcu (tr-TR)"
31+
},
32+
{
33+
"type": "feature",
34+
"category": "SageMaker",
35+
"description": "This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares."
36+
}
37+
]

CHANGELOG.md

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

5+
## 2.1559.0
6+
* feature: Artifact: This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings.
7+
* feature: CodePipeline: Add ability to override timeout on action level.
8+
* feature: GuardDuty: Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive.
9+
* feature: HealthLake: This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server.
10+
* feature: OpenSearch: Adds additional supported instance types.
11+
* feature: Polly: Amazon Polly adds 1 new voice - Burcu (tr-TR)
12+
* feature: SageMaker: This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares.
13+
514
## 2.1558.0
615
* feature: ControlTower: Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.
716
* feature: LookoutEquipment: This feature allows customers to see pointwise model diagnostics results for their models.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6969
To use the SDK in the browser, simply add the following script tag to your
7070
HTML pages:
7171

72-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1558.0.min.js"></script>
72+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1559.0.min.js"></script>
7373

7474
You can also build a custom browser SDK with your specified set of AWS services.
7575
This can allow you to reduce the SDK's size, specify different API versions of
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "1.0",
3+
"examples": {
4+
}
5+
}

apis/artifact-2018-05-10.min.json

Lines changed: 258 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
{
2+
"version": "2.0",
3+
"metadata": {
4+
"apiVersion": "2018-05-10",
5+
"endpointPrefix": "artifact",
6+
"jsonVersion": "1.1",
7+
"protocol": "rest-json",
8+
"serviceFullName": "AWS Artifact",
9+
"serviceId": "Artifact",
10+
"signatureVersion": "v4",
11+
"signingName": "artifact",
12+
"uid": "artifact-2018-05-10"
13+
},
14+
"operations": {
15+
"GetAccountSettings": {
16+
"http": {
17+
"method": "GET",
18+
"requestUri": "/v1/account-settings/get",
19+
"responseCode": 200
20+
},
21+
"input": {
22+
"type": "structure",
23+
"members": {}
24+
},
25+
"output": {
26+
"type": "structure",
27+
"members": {
28+
"accountSettings": {
29+
"shape": "S3"
30+
}
31+
}
32+
}
33+
},
34+
"GetReport": {
35+
"http": {
36+
"method": "GET",
37+
"requestUri": "/v1/report/get",
38+
"responseCode": 200
39+
},
40+
"input": {
41+
"type": "structure",
42+
"required": [
43+
"reportId",
44+
"termToken"
45+
],
46+
"members": {
47+
"reportId": {
48+
"location": "querystring",
49+
"locationName": "reportId"
50+
},
51+
"reportVersion": {
52+
"location": "querystring",
53+
"locationName": "reportVersion",
54+
"type": "long"
55+
},
56+
"termToken": {
57+
"location": "querystring",
58+
"locationName": "termToken"
59+
}
60+
}
61+
},
62+
"output": {
63+
"type": "structure",
64+
"members": {
65+
"documentPresignedUrl": {}
66+
}
67+
}
68+
},
69+
"GetReportMetadata": {
70+
"http": {
71+
"method": "GET",
72+
"requestUri": "/v1/report/getMetadata",
73+
"responseCode": 200
74+
},
75+
"input": {
76+
"type": "structure",
77+
"required": [
78+
"reportId"
79+
],
80+
"members": {
81+
"reportId": {
82+
"location": "querystring",
83+
"locationName": "reportId"
84+
},
85+
"reportVersion": {
86+
"location": "querystring",
87+
"locationName": "reportVersion",
88+
"type": "long"
89+
}
90+
}
91+
},
92+
"output": {
93+
"type": "structure",
94+
"members": {
95+
"reportDetails": {
96+
"type": "structure",
97+
"members": {
98+
"acceptanceType": {},
99+
"arn": {},
100+
"category": {},
101+
"companyName": {},
102+
"createdAt": {
103+
"shape": "Sg"
104+
},
105+
"deletedAt": {
106+
"shape": "Sg"
107+
},
108+
"description": {},
109+
"id": {},
110+
"lastModifiedAt": {
111+
"shape": "Sg"
112+
},
113+
"name": {},
114+
"periodEnd": {
115+
"shape": "Sg"
116+
},
117+
"periodStart": {
118+
"shape": "Sg"
119+
},
120+
"productName": {},
121+
"sequenceNumber": {
122+
"type": "long"
123+
},
124+
"series": {},
125+
"state": {},
126+
"statusMessage": {},
127+
"termArn": {},
128+
"uploadState": {},
129+
"version": {
130+
"type": "long"
131+
}
132+
}
133+
}
134+
}
135+
}
136+
},
137+
"GetTermForReport": {
138+
"http": {
139+
"method": "GET",
140+
"requestUri": "/v1/report/getTermForReport",
141+
"responseCode": 200
142+
},
143+
"input": {
144+
"type": "structure",
145+
"required": [
146+
"reportId"
147+
],
148+
"members": {
149+
"reportId": {
150+
"location": "querystring",
151+
"locationName": "reportId"
152+
},
153+
"reportVersion": {
154+
"location": "querystring",
155+
"locationName": "reportVersion",
156+
"type": "long"
157+
}
158+
}
159+
},
160+
"output": {
161+
"type": "structure",
162+
"members": {
163+
"documentPresignedUrl": {},
164+
"termToken": {}
165+
}
166+
}
167+
},
168+
"ListReports": {
169+
"http": {
170+
"method": "GET",
171+
"requestUri": "/v1/report/list",
172+
"responseCode": 200
173+
},
174+
"input": {
175+
"type": "structure",
176+
"members": {
177+
"maxResults": {
178+
"location": "querystring",
179+
"locationName": "maxResults",
180+
"type": "integer"
181+
},
182+
"nextToken": {
183+
"location": "querystring",
184+
"locationName": "nextToken"
185+
}
186+
}
187+
},
188+
"output": {
189+
"type": "structure",
190+
"members": {
191+
"nextToken": {},
192+
"reports": {
193+
"type": "list",
194+
"member": {
195+
"type": "structure",
196+
"members": {
197+
"arn": {},
198+
"category": {},
199+
"companyName": {},
200+
"description": {},
201+
"id": {},
202+
"name": {},
203+
"periodEnd": {
204+
"shape": "Sg"
205+
},
206+
"periodStart": {
207+
"shape": "Sg"
208+
},
209+
"productName": {},
210+
"series": {},
211+
"state": {},
212+
"statusMessage": {},
213+
"uploadState": {},
214+
"version": {
215+
"type": "long"
216+
}
217+
}
218+
}
219+
}
220+
}
221+
}
222+
},
223+
"PutAccountSettings": {
224+
"http": {
225+
"method": "PUT",
226+
"requestUri": "/v1/account-settings/put",
227+
"responseCode": 200
228+
},
229+
"input": {
230+
"type": "structure",
231+
"members": {
232+
"notificationSubscriptionStatus": {}
233+
}
234+
},
235+
"output": {
236+
"type": "structure",
237+
"members": {
238+
"accountSettings": {
239+
"shape": "S3"
240+
}
241+
}
242+
},
243+
"idempotent": true
244+
}
245+
},
246+
"shapes": {
247+
"S3": {
248+
"type": "structure",
249+
"members": {
250+
"notificationSubscriptionStatus": {}
251+
}
252+
},
253+
"Sg": {
254+
"type": "timestamp",
255+
"timestampFormat": "iso8601"
256+
}
257+
}
258+
}

0 commit comments

Comments
 (0)