Skip to content

Commit a42ad57

Browse files
author
awstools
committed
Updates SDK to v2.998.0
1 parent 7efca93 commit a42ad57

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4667
-402
lines changed

.changes/2.998.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": "Account",
5+
"description": "This release of the Account Management API enables customers to manage the alternate contacts for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/accounts-welcome.html"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "CloudControl",
10+
"description": "Initial release of the SDK for AWS Cloud Control API"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "DataExchange",
15+
"description": "This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Macie2",
20+
"description": "Amazon S3 bucket metadata now indicates whether an error or a bucket's permissions settings prevented Amazon Macie from retrieving data about the bucket or the bucket's objects."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "NetworkFirewall",
25+
"description": "This release adds support for strict ordering for stateful rule groups. Using strict ordering, stateful rules are evaluated in the exact order in which you provide them."
26+
},
27+
{
28+
"type": "feature",
29+
"category": "WorkMail",
30+
"description": "This release adds support for mobile device access overrides management in Amazon WorkMail."
31+
},
32+
{
33+
"type": "feature",
34+
"category": "WorkSpaces",
35+
"description": "Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images."
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.997.0-->
2+
<!--LATEST=2.998.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.998.0
6+
* feature: Account: This release of the Account Management API enables customers to manage the alternate contacts for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/accounts-welcome.html
7+
* feature: CloudControl: Initial release of the SDK for AWS Cloud Control API
8+
* feature: DataExchange: This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API.
9+
* feature: Macie2: Amazon S3 bucket metadata now indicates whether an error or a bucket's permissions settings prevented Amazon Macie from retrieving data about the bucket or the bucket's objects.
10+
* feature: NetworkFirewall: This release adds support for strict ordering for stateful rule groups. Using strict ordering, stateful rules are evaluated in the exact order in which you provide them.
11+
* feature: WorkMail: This release adds support for mobile device access overrides management in Amazon WorkMail.
12+
* feature: WorkSpaces: Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images.
13+
514
## 2.997.0
615
* feature: Amp: This release adds alert manager and rule group namespace APIs
716
* feature: Lambda: Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions.

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.997.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.998.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.examples.json

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/account-2021-02-01.min.json

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
{
2+
"version": "2.0",
3+
"metadata": {
4+
"apiVersion": "2021-02-01",
5+
"endpointPrefix": "account",
6+
"jsonVersion": "1.1",
7+
"protocol": "rest-json",
8+
"serviceFullName": "AWS Account",
9+
"serviceId": "Account",
10+
"signatureVersion": "v4",
11+
"signingName": "account",
12+
"uid": "account-2021-02-01"
13+
},
14+
"operations": {
15+
"DeleteAlternateContact": {
16+
"http": {
17+
"requestUri": "/deleteAlternateContact",
18+
"responseCode": 200
19+
},
20+
"input": {
21+
"type": "structure",
22+
"required": [
23+
"AlternateContactType"
24+
],
25+
"members": {
26+
"AccountId": {},
27+
"AlternateContactType": {}
28+
}
29+
},
30+
"idempotent": true
31+
},
32+
"GetAlternateContact": {
33+
"http": {
34+
"requestUri": "/getAlternateContact",
35+
"responseCode": 200
36+
},
37+
"input": {
38+
"type": "structure",
39+
"required": [
40+
"AlternateContactType"
41+
],
42+
"members": {
43+
"AccountId": {},
44+
"AlternateContactType": {}
45+
}
46+
},
47+
"output": {
48+
"type": "structure",
49+
"members": {
50+
"AlternateContact": {
51+
"type": "structure",
52+
"members": {
53+
"AlternateContactType": {},
54+
"EmailAddress": {
55+
"shape": "S7"
56+
},
57+
"Name": {
58+
"shape": "S8"
59+
},
60+
"PhoneNumber": {
61+
"shape": "S9"
62+
},
63+
"Title": {
64+
"shape": "Sa"
65+
}
66+
}
67+
}
68+
}
69+
}
70+
},
71+
"PutAlternateContact": {
72+
"http": {
73+
"requestUri": "/putAlternateContact",
74+
"responseCode": 200
75+
},
76+
"input": {
77+
"type": "structure",
78+
"required": [
79+
"AlternateContactType",
80+
"EmailAddress",
81+
"Name",
82+
"PhoneNumber",
83+
"Title"
84+
],
85+
"members": {
86+
"AccountId": {},
87+
"AlternateContactType": {},
88+
"EmailAddress": {
89+
"shape": "S7"
90+
},
91+
"Name": {
92+
"shape": "S8"
93+
},
94+
"PhoneNumber": {
95+
"shape": "S9"
96+
},
97+
"Title": {
98+
"shape": "Sa"
99+
}
100+
}
101+
},
102+
"idempotent": true
103+
}
104+
},
105+
"shapes": {
106+
"S7": {
107+
"type": "string",
108+
"sensitive": true
109+
},
110+
"S8": {
111+
"type": "string",
112+
"sensitive": true
113+
},
114+
"S9": {
115+
"type": "string",
116+
"sensitive": true
117+
},
118+
"Sa": {
119+
"type": "string",
120+
"sensitive": true
121+
}
122+
}
123+
}

0 commit comments

Comments
 (0)