aws-sdk 2.1387.0 → 2.1389.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 +15 -1
- package/README.md +1 -1
- package/apis/alexaforbusiness-2017-11-09.min.json +344 -128
- package/apis/appflow-2020-08-23.min.json +103 -77
- package/apis/config-2014-11-12.min.json +129 -112
- package/apis/customer-profiles-2020-08-15.min.json +476 -96
- package/apis/frauddetector-2019-11-15.min.json +29 -12
- package/apis/healthlake-2017-07-01.min.json +43 -17
- package/apis/ivs-2020-07-14.min.json +52 -47
- package/apis/m2-2021-04-28.min.json +90 -40
- package/apis/metadata.json +2 -1
- package/apis/rds-2014-10-31.min.json +4 -2
- package/apis/workspaces-web-2020-07-08.min.json +360 -71
- package/apis/workspaces-web-2020-07-08.paginators.json +5 -0
- package/clients/alexaforbusiness.d.ts +12 -0
- package/clients/appflow.d.ts +31 -0
- package/clients/browser_default.d.ts +1 -0
- package/clients/browser_default.js +1 -0
- package/clients/configservice.d.ts +34 -13
- package/clients/customerprofiles.d.ts +438 -2
- package/clients/frauddetector.d.ts +18 -4
- package/clients/healthlake.d.ts +40 -10
- package/clients/ivs.d.ts +27 -6
- package/clients/m2.d.ts +81 -2
- package/clients/rds.d.ts +10 -2
- package/clients/sagemaker.d.ts +2 -2
- package/clients/servicecatalog.d.ts +8 -8
- package/clients/wafv2.d.ts +1 -1
- package/clients/workspacesweb.d.ts +254 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +1609 -605
- package/dist/aws-sdk.min.js +101 -100
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,21 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1389.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1389.0
|
6
|
+
* bugfix: amazonprometheus: Enable CORS for Amazon Prometheus
|
7
|
+
* feature: Appflow: Added ability to select DataTransferApiType for DescribeConnector and CreateFlow requests when using Async supported connectors. Added supportedDataTransferType to DescribeConnector/DescribeConnectors/ListConnector response.
|
8
|
+
* feature: CustomerProfiles: This release introduces calculated attribute related APIs.
|
9
|
+
* feature: IVS: API Update for IVS Advanced Channel type
|
10
|
+
|
11
|
+
## 2.1388.0
|
12
|
+
* feature: ConfigService: Resource Types Exclusion feature launch by AWS Config
|
13
|
+
* 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.
|
14
|
+
* 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.
|
15
|
+
* feature: M2: Adds an optional create-only 'roleArn' property to Application resources. Enables PS and PO data set org types.
|
16
|
+
* feature: RDS: This release adds support for changing the engine for Oracle using the ModifyDbInstance API
|
17
|
+
* feature: WorkSpacesWeb: WorkSpaces Web now allows you to control which IP addresses your WorkSpaces Web portal may be accessed from.
|
18
|
+
|
5
19
|
## 2.1387.0
|
6
20
|
* feature: ChimeSDKVoice: Added optional CallLeg field to StartSpeakerSearchTask API request
|
7
21
|
* feature: Glue: Added Runtime parameter to allow selection of Ray Runtime
|
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.1389.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
|