aws-sdk 2.1386.0 → 2.1388.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 +21 -1
- package/README.md +1 -1
- package/apis/chime-sdk-voice-2022-08-03.min.json +2 -1
- package/apis/config-2014-11-12.min.json +129 -112
- package/apis/frauddetector-2019-11-15.min.json +29 -12
- package/apis/glue-2017-03-31.min.json +510 -509
- package/apis/healthlake-2017-07-01.min.json +43 -17
- package/apis/iotfleetwise-2021-06-17.min.json +86 -43
- package/apis/location-2020-11-19.min.json +23 -16
- package/apis/m2-2021-04-28.min.json +90 -40
- package/apis/personalize-2018-05-22.min.json +32 -13
- package/apis/rds-2014-10-31.min.json +4 -2
- package/apis/securityhub-2018-10-26.examples.json +140 -3
- package/apis/securityhub-2018-10-26.min.json +465 -158
- package/apis/securitylake-2018-05-10.min.json +457 -447
- package/apis/securitylake-2018-05-10.paginators.json +7 -7
- package/apis/wafv2-2019-07-29.min.json +168 -159
- package/apis/workspaces-web-2020-07-08.min.json +360 -71
- package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/clients/chimesdkvoice.d.ts +5 -0
- package/clients/configservice.d.ts +34 -13
- package/clients/frauddetector.d.ts +18 -4
- package/clients/glue.d.ts +29 -24
- package/clients/groundstation.d.ts +2 -2
- package/clients/healthlake.d.ts +40 -10
- package/clients/iotfleetwise.d.ts +98 -13
- package/clients/location.d.ts +24 -8
- package/clients/m2.d.ts +81 -2
- package/clients/memorydb.d.ts +2 -2
- package/clients/personalize.d.ts +34 -17
- package/clients/polly.d.ts +2 -2
- package/clients/rds.d.ts +10 -2
- package/clients/securityhub.d.ts +539 -1
- package/clients/securitylake.d.ts +560 -541
- package/clients/servicecatalog.d.ts +8 -8
- package/clients/wafv2.d.ts +16 -6
- package/clients/workspacesweb.d.ts +254 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +17 -17
- package/dist/aws-sdk.js +191 -146
- package/dist/aws-sdk.min.js +63 -63
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,27 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1388.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1388.0
|
6
|
+
* feature: ConfigService: Resource Types Exclusion feature launch by AWS Config
|
7
|
+
* feature: FraudDetector: This release enables publishing event predictions from Amazon Fraud Detector (AFD) to Amazon EventBridge. For example, after getting predictions from AFD, Amazon EventBridge rules can be configured to trigger notification through an SNS topic, send a message with SES, or trigger Lambda workflows.
|
8
|
+
* feature: HealthLake: This release adds a new request parameter to the CreateFHIRDatastore API operation. IdentityProviderConfiguration specifies how you want to authenticate incoming requests to your Healthlake Data Store.
|
9
|
+
* feature: M2: Adds an optional create-only 'roleArn' property to Application resources. Enables PS and PO data set org types.
|
10
|
+
* feature: RDS: This release adds support for changing the engine for Oracle using the ModifyDbInstance API
|
11
|
+
* feature: WorkSpacesWeb: WorkSpaces Web now allows you to control which IP addresses your WorkSpaces Web portal may be accessed from.
|
12
|
+
|
13
|
+
## 2.1387.0
|
14
|
+
* feature: ChimeSDKVoice: Added optional CallLeg field to StartSpeakerSearchTask API request
|
15
|
+
* feature: Glue: Added Runtime parameter to allow selection of Ray Runtime
|
16
|
+
* feature: IoTFleetWise: Campaigns now support selecting Timestream or S3 as the data destination, Signal catalogs now support "Deprecation" keyword released in VSS v2.1 and "Comment" keyword released in VSS v3.0
|
17
|
+
* feature: Location: This release adds API support for political views for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
|
18
|
+
* feature: MemoryDB: Amazon MemoryDB for Redis now supports AWS Identity and Access Management authentication access to Redis clusters starting with redis-engine version 7.0
|
19
|
+
* feature: Personalize: This release provides support for the exclusion of certain columns for training when creating a solution and creating or updating a recommender with Amazon Personalize.
|
20
|
+
* feature: Polly: Amazon Polly adds 2 new voices - Sofie (da-DK) and Niamh (en-IE)
|
21
|
+
* feature: SecurityHub: Added new resource detail objects to ASFF, including resources for AwsGuardDutyDetector, AwsAmazonMqBroker, AwsEventSchemasRegistry, AwsAppSyncGraphQlApi and AwsStepFunctionStateMachine.
|
22
|
+
* feature: SecurityLake: Log sources are now versioned. AWS log sources and custom sources will now come with a version identifier that enables producers to vend multiple schema versions to subscribers. Security Lake API have been refactored to more closely align with AWS API conventions.
|
23
|
+
* feature: WAFV2: This SDK release provides customers the ability to use Header Order as a field to match.
|
24
|
+
|
5
25
|
## 2.1386.0
|
6
26
|
* feature: Connect: Documentation update for a new Initiation Method value in DescribeContact API
|
7
27
|
* feature: IoTWireless: Add Multicast Group support in Network Analyzer Configuration.
|
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.1388.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
|