aws-sdk 2.1470.0 → 2.1471.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 +8 -1
- package/README.md +1 -1
- package/apis/omics-2022-11-28.min.json +45 -112
- package/apis/route53-2013-04-01.min.json +14 -10
- package/apis/securityhub-2018-10-26.min.json +324 -61
- package/apis/storagegateway-2013-06-30.min.json +13 -11
- package/apis/workspaces-2015-04-08.min.json +421 -105
- package/apis/workspaces-2015-04-08.paginators.json +10 -0
- package/clients/omics.d.ts +23 -0
- package/clients/rds.d.ts +225 -225
- package/clients/route53.d.ts +17 -12
- package/clients/securityhub.d.ts +484 -0
- package/clients/storagegateway.d.ts +18 -13
- package/clients/workspaces.d.ts +431 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +30 -24
- package/dist/aws-sdk.min.js +17 -17
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1471.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1471.0
|
6
|
+
* feature: Omics: Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
|
7
|
+
* feature: Route53: Add hostedzonetype filter to ListHostedZones API.
|
8
|
+
* feature: SecurityHub: Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster
|
9
|
+
* feature: StorageGateway: Add SoftwareVersion to response of DescribeGatewayInformation.
|
10
|
+
* feature: WorkSpaces: This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses.
|
11
|
+
|
5
12
|
## 2.1470.0
|
6
13
|
* feature: AppConfig: AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store.
|
7
14
|
* feature: DataZone: Initial release of Amazon DataZone
|
package/README.md
CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
71
71
|
To use the SDK in the browser, simply add the following script tag to your
|
72
72
|
HTML pages:
|
73
73
|
|
74
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1471.0.min.js"></script>
|
75
75
|
|
76
76
|
You can also build a custom browser SDK with your specified set of AWS services.
|
77
77
|
This can allow you to reduce the SDK's size, specify different API versions of
|