Skip to content

Commit 17127b3

Browse files
author
awstools
committed
Updates SDK to v2.1181.0
1 parent b17693f commit 17127b3

26 files changed

+1354
-317
lines changed

.changes/2.1181.0.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Account",
5+
"description": "This release enables customers to manage the primary contact information for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/API_Operations.html"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "EC2",
10+
"description": "Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "IotDeviceAdvisor",
15+
"description": "Added new service feature (Early access only) - Long Duration Test, where customers can test the IoT device to observe how it behaves when the device is in operation for longer period."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "MediaLive",
20+
"description": "Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "RDS",
25+
"description": "This release adds the \"ModifyActivityStream\" API with support for audit policy state locking and unlocking."
26+
},
27+
{
28+
"type": "feature",
29+
"category": "TranscribeService",
30+
"description": "Remove unsupported language codes for StartTranscriptionJob and update VocabularyFileUri for UpdateMedicalVocabulary"
31+
}
32+
]

CHANGELOG.md

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

5+
## 2.1181.0
6+
* feature: Account: This release enables customers to manage the primary contact information for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/API_Operations.html
7+
* feature: EC2: Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac.
8+
* feature: IotDeviceAdvisor: Added new service feature (Early access only) - Long Duration Test, where customers can test the IoT device to observe how it behaves when the device is in operation for longer period.
9+
* feature: MediaLive: Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
10+
* feature: RDS: This release adds the "ModifyActivityStream" API with support for audit policy state locking and unlocking.
11+
* feature: TranscribeService: Remove unsupported language codes for StartTranscriptionJob and update VocabularyFileUri for UpdateMedicalVocabulary
12+
513
## 2.1180.0
614
* feature: Athena: This feature allows customers to retrieve runtime statistics for completed queries
715
* feature: CloudWatch: Adding support for the suppression of Composite Alarm actions

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.1180.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1181.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/account-2021-02-01.min.json

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,26 @@
6868
}
6969
}
7070
},
71+
"GetContactInformation": {
72+
"http": {
73+
"requestUri": "/getContactInformation",
74+
"responseCode": 200
75+
},
76+
"input": {
77+
"type": "structure",
78+
"members": {
79+
"AccountId": {}
80+
}
81+
},
82+
"output": {
83+
"type": "structure",
84+
"members": {
85+
"ContactInformation": {
86+
"shape": "Sd"
87+
}
88+
}
89+
}
90+
},
7191
"PutAlternateContact": {
7292
"http": {
7393
"requestUri": "/putAlternateContact",
@@ -100,6 +120,25 @@
100120
}
101121
},
102122
"idempotent": true
123+
},
124+
"PutContactInformation": {
125+
"http": {
126+
"requestUri": "/putContactInformation",
127+
"responseCode": 200
128+
},
129+
"input": {
130+
"type": "structure",
131+
"required": [
132+
"ContactInformation"
133+
],
134+
"members": {
135+
"AccountId": {},
136+
"ContactInformation": {
137+
"shape": "Sd"
138+
}
139+
}
140+
},
141+
"idempotent": true
103142
}
104143
},
105144
"shapes": {
@@ -118,6 +157,68 @@
118157
"Sa": {
119158
"type": "string",
120159
"sensitive": true
160+
},
161+
"Sd": {
162+
"type": "structure",
163+
"required": [
164+
"AddressLine1",
165+
"City",
166+
"CountryCode",
167+
"FullName",
168+
"PhoneNumber",
169+
"PostalCode"
170+
],
171+
"members": {
172+
"AddressLine1": {
173+
"shape": "Se"
174+
},
175+
"AddressLine2": {
176+
"shape": "Se"
177+
},
178+
"AddressLine3": {
179+
"shape": "Se"
180+
},
181+
"City": {
182+
"type": "string",
183+
"sensitive": true
184+
},
185+
"CompanyName": {
186+
"type": "string",
187+
"sensitive": true
188+
},
189+
"CountryCode": {
190+
"type": "string",
191+
"sensitive": true
192+
},
193+
"DistrictOrCounty": {
194+
"type": "string",
195+
"sensitive": true
196+
},
197+
"FullName": {
198+
"type": "string",
199+
"sensitive": true
200+
},
201+
"PhoneNumber": {
202+
"type": "string",
203+
"sensitive": true
204+
},
205+
"PostalCode": {
206+
"type": "string",
207+
"sensitive": true
208+
},
209+
"StateOrRegion": {
210+
"type": "string",
211+
"sensitive": true
212+
},
213+
"WebsiteUrl": {
214+
"type": "string",
215+
"sensitive": true
216+
}
217+
}
218+
},
219+
"Se": {
220+
"type": "string",
221+
"sensitive": true
121222
}
122223
}
123224
}

0 commit comments

Comments
 (0)