Skip to content

Commit

Permalink
Updates SDK to v2.998.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 30, 2021
1 parent 7efca93 commit a42ad57
Show file tree
Hide file tree
Showing 43 changed files with 4,667 additions and 402 deletions.
37 changes: 37 additions & 0 deletions .changes/2.998.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"type": "feature",
"category": "Account",
"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"
},
{
"type": "feature",
"category": "CloudControl",
"description": "Initial release of the SDK for AWS Cloud Control API"
},
{
"type": "feature",
"category": "DataExchange",
"description": "This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API."
},
{
"type": "feature",
"category": "Macie2",
"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."
},
{
"type": "feature",
"category": "NetworkFirewall",
"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."
},
{
"type": "feature",
"category": "WorkMail",
"description": "This release adds support for mobile device access overrides management in Amazon WorkMail."
},
{
"type": "feature",
"category": "WorkSpaces",
"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."
}
]
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.997.0-->
<!--LATEST=2.998.0-->
<!--ENTRYINSERT-->

## 2.998.0
* 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
* feature: CloudControl: Initial release of the SDK for AWS Cloud Control API
* feature: DataExchange: This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API.
* 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.
* 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.
* feature: WorkMail: This release adds support for mobile device access overrides management in Amazon WorkMail.
* 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.

## 2.997.0
* feature: Amp: This release adds alert manager and rule group namespace APIs
* feature: Lambda: Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions.
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.997.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.998.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
5 changes: 5 additions & 0 deletions apis/account-2021-02-01.examples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "1.0",
"examples": {
}
}
123 changes: 123 additions & 0 deletions apis/account-2021-02-01.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
{
"version": "2.0",
"metadata": {
"apiVersion": "2021-02-01",
"endpointPrefix": "account",
"jsonVersion": "1.1",
"protocol": "rest-json",
"serviceFullName": "AWS Account",
"serviceId": "Account",
"signatureVersion": "v4",
"signingName": "account",
"uid": "account-2021-02-01"
},
"operations": {
"DeleteAlternateContact": {
"http": {
"requestUri": "/deleteAlternateContact",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"AlternateContactType"
],
"members": {
"AccountId": {},
"AlternateContactType": {}
}
},
"idempotent": true
},
"GetAlternateContact": {
"http": {
"requestUri": "/getAlternateContact",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"AlternateContactType"
],
"members": {
"AccountId": {},
"AlternateContactType": {}
}
},
"output": {
"type": "structure",
"members": {
"AlternateContact": {
"type": "structure",
"members": {
"AlternateContactType": {},
"EmailAddress": {
"shape": "S7"
},
"Name": {
"shape": "S8"
},
"PhoneNumber": {
"shape": "S9"
},
"Title": {
"shape": "Sa"
}
}
}
}
}
},
"PutAlternateContact": {
"http": {
"requestUri": "/putAlternateContact",
"responseCode": 200
},
"input": {
"type": "structure",
"required": [
"AlternateContactType",
"EmailAddress",
"Name",
"PhoneNumber",
"Title"
],
"members": {
"AccountId": {},
"AlternateContactType": {},
"EmailAddress": {
"shape": "S7"
},
"Name": {
"shape": "S8"
},
"PhoneNumber": {
"shape": "S9"
},
"Title": {
"shape": "Sa"
}
}
},
"idempotent": true
}
},
"shapes": {
"S7": {
"type": "string",
"sensitive": true
},
"S8": {
"type": "string",
"sensitive": true
},
"S9": {
"type": "string",
"sensitive": true
},
"Sa": {
"type": "string",
"sensitive": true
}
}
}
Loading

0 comments on commit a42ad57

Please sign in to comment.