aws-sdk 2.1467.0 → 2.1468.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/bedrock-2023-04-20.min.json +430 -184
- package/apis/bedrock-2023-04-20.paginators.json +6 -0
- package/apis/bedrock-2023-04-20.waiters2.json +5 -0
- package/apis/bedrock-runtime-2023-09-30.min.json +11 -0
- package/apis/rds-2014-10-31.min.json +1 -0
- package/clients/bedrock.d.ts +428 -166
- package/clients/bedrock.js +1 -0
- package/clients/bedrockruntime.d.ts +8 -5
- package/clients/ec2.d.ts +1 -1
- package/clients/managedblockchain.d.ts +3 -3
- package/clients/rds.d.ts +35 -31
- package/clients/sts.d.ts +2 -1
- package/clients/transfer.d.ts +21 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +17 -10
- package/dist/aws-sdk.js +4 -3
- package/dist/aws-sdk.min.js +10 -10
- 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.1468.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1468.0
|
6
|
+
* feature: Bedrock: Provisioned throughput feature with Amazon and third-party base models, and update validators for model identifier and taggable resource ARNs.
|
7
|
+
* feature: BedrockRuntime: Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier.
|
8
|
+
* feature: EC2: Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
|
9
|
+
* feature: RDS: Adds DefaultCertificateForNewLaunches field in the DescribeCertificates API response.
|
10
|
+
* feature: SSO: Fix FIPS Endpoints in aws-us-gov.
|
11
|
+
* feature: STS: STS API updates for assumeRole
|
12
|
+
|
5
13
|
## 2.1467.0
|
6
14
|
* feature: Bedrock: Model Invocation logging added to enable or disable logs in customer account. Model listing and description support added. Provisioned Throughput feature added. Custom model support added for creating custom models. Also includes list, and delete functions for custom model.
|
7
15
|
* feature: BedrockRuntime: Run Inference: Added support to run the inference on models. Includes set of APIs for running inference in streaming and non-streaming mode.
|
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.1468.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
|