aws-sdk 2.1228.0 → 2.1230.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -1
- package/README.md +1 -1
- package/apis/connectcases-2022-10-03.examples.json +5 -0
- package/apis/connectcases-2022-10-03.min.json +1536 -0
- package/apis/connectcases-2022-10-03.paginators.json +50 -0
- package/apis/ec2-2016-11-15.min.json +7 -0
- package/apis/glue-2017-03-31.min.json +359 -293
- package/apis/metadata.json +3 -0
- package/apis/network-firewall-2020-11-12.min.json +39 -38
- package/apis/outposts-2019-12-03.min.json +8 -1
- package/apis/workmail-2017-10-01.min.json +309 -72
- package/apis/workmail-2017-10-01.paginators.json +5 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/connect.d.ts +1 -1
- package/clients/connectcases.d.ts +1466 -0
- package/clients/connectcases.js +18 -0
- package/clients/ec2.d.ts +9 -1
- package/clients/ecs.d.ts +4 -4
- package/clients/glue.d.ts +154 -0
- package/clients/networkfirewall.d.ts +5 -0
- package/clients/outposts.d.ts +89 -78
- package/clients/s3control.d.ts +2 -2
- package/clients/workmail.d.ts +436 -103
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +47 -10
- package/dist/aws-sdk.js +13 -3
- package/dist/aws-sdk.min.js +62 -62
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1230.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1230.0
|
|
6
|
+
* feature: Glue: This SDK release adds support to sync glue jobs with source control provider. Additionally, a new parameter called SourceControlDetails will be added to Job model.
|
|
7
|
+
* feature: NetworkFirewall: StreamExceptionPolicy configures how AWS Network Firewall processes traffic when a network connection breaks midstream
|
|
8
|
+
* feature: Outposts: This release adds the Asset state information to the ListAssets response. The ListAssets request supports filtering on Asset state.
|
|
9
|
+
|
|
10
|
+
## 2.1229.0
|
|
11
|
+
* feature: Connect: Updated the CreateIntegrationAssociation API to support the CASES_DOMAIN IntegrationType.
|
|
12
|
+
* feature: ConnectCases: This release adds APIs for Amazon Connect Cases. Cases allows your agents to quickly track and manage customer issues that require multiple interactions, follow-up tasks, and teams in your contact center. For more information, see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
|
|
13
|
+
* feature: EC2: Added EnableNetworkAddressUsageMetrics flag for ModifyVpcAttribute, DescribeVpcAttribute APIs.
|
|
14
|
+
* feature: S3Control: S3 Object Lambda adds support to allow customers to intercept HeadObject and ListObjects requests and introduce their own compute. These requests were previously proxied to S3.
|
|
15
|
+
* feature: WorkMail: This release adds support for impersonation roles in Amazon WorkMail.
|
|
16
|
+
|
|
5
17
|
## 2.1228.0
|
|
6
18
|
* feature: AccessAnalyzer: AWS IAM Access Analyzer policy validation introduces new checks for role trust policies. As customers author a policy, IAM Access Analyzer policy validation evaluates the policy for any issues to make it easier for customers to author secure policies.
|
|
7
19
|
* feature: EC2: Adding an imdsSupport attribute to EC2 AMIs
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1230.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|