aws-sdk 2.1393.0 → 2.1394.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 +9 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +3 -0
- package/apis/metadata.json +8 -0
- package/apis/payment-cryptography-2021-09-14.examples.json +5 -0
- package/apis/payment-cryptography-2021-09-14.min.json +770 -0
- package/apis/payment-cryptography-2021-09-14.paginators.json +22 -0
- package/apis/payment-cryptography-data-2022-02-03.examples.json +5 -0
- package/apis/payment-cryptography-data-2022-02-03.min.json +1018 -0
- package/apis/payment-cryptography-data-2022-02-03.paginators.json +4 -0
- package/apis/servicecatalog-2015-12-10.min.json +38 -29
- package/apis/timestream-write-2018-11-01.min.json +36 -8
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/athena.d.ts +6 -2
- package/clients/comprehendmedical.d.ts +4 -4
- package/clients/paymentcryptography.d.ts +867 -0
- package/clients/paymentcryptography.js +18 -0
- package/clients/paymentcryptographydata.d.ts +1161 -0
- package/clients/paymentcryptographydata.js +18 -0
- package/clients/servicecatalog.d.ts +10 -2
- package/clients/timestreamwrite.d.ts +39 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +81 -7
- package/dist/aws-sdk.js +52 -32
- package/dist/aws-sdk.min.js +98 -98
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1394.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1394.0
|
6
|
+
* feature: Athena: You can now define custom spark properties at start of the session for use cases like cluster encryption, table formats, and general Spark tuning.
|
7
|
+
* feature: ComprehendMedical: This release supports a new set of entities and traits.
|
8
|
+
* feature: PaymentCryptography: Initial release of AWS Payment Cryptography Control Plane service for creating and managing cryptographic keys used during card payment processing.
|
9
|
+
* feature: PaymentCryptographyData: Initial release of AWS Payment Cryptography DataPlane Plane service for performing cryptographic operations typically used during card payment processing.
|
10
|
+
* feature: ServiceCatalog: New parameter added in ServiceCatalog DescribeProvisioningArtifact api - IncludeProvisioningArtifactParameters. This parameter can be used to return information about the parameters used to provision the product
|
11
|
+
* feature: TimestreamWrite: This release adds the capability for customers to define how their data should be partitioned, optimizing for certain access patterns. This definition will take place as a part of the table creation.
|
12
|
+
|
5
13
|
## 2.1393.0
|
6
14
|
* feature: CloudFormation: AWS CloudFormation StackSets is updating the deployment experience for all stackset operations to skip suspended AWS accounts during deployments. StackSets will skip target AWS accounts that are suspended and set the Detailed Status of the corresponding stack instances as SKIPPED_SUSPENDED_ACCOUNT
|
7
15
|
* feature: CloudWatchLogs: This change adds support for account level data protection policies using 3 new APIs, PutAccountPolicy, DeleteAccountPolicy and DescribeAccountPolicy. DescribeLogGroup API has been modified to indicate if account level policy is applied to the LogGroup via "inheritedProperties" list in the response.
|
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.1394.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
|
package/apis/metadata.json
CHANGED
@@ -1299,5 +1299,13 @@
|
|
1299
1299
|
},
|
1300
1300
|
"mediapackagev2": {
|
1301
1301
|
"name": "MediaPackageV2"
|
1302
|
+
},
|
1303
|
+
"paymentcryptography": {
|
1304
|
+
"prefix": "payment-cryptography",
|
1305
|
+
"name": "PaymentCryptography"
|
1306
|
+
},
|
1307
|
+
"paymentcryptographydata": {
|
1308
|
+
"prefix": "payment-cryptography-data",
|
1309
|
+
"name": "PaymentCryptographyData"
|
1302
1310
|
}
|
1303
1311
|
}
|