aws-sdk 2.1466.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/README.md +1 -1
  3. package/apis/bedrock-2023-04-20.examples.json +5 -0
  4. package/apis/bedrock-2023-04-20.min.json +1062 -0
  5. package/apis/bedrock-2023-04-20.paginators.json +22 -0
  6. package/apis/bedrock-2023-04-20.waiters2.json +5 -0
  7. package/apis/bedrock-runtime-2023-09-30.examples.json +5 -0
  8. package/apis/bedrock-runtime-2023-09-30.min.json +191 -0
  9. package/apis/bedrock-runtime-2023-09-30.paginators.json +4 -0
  10. package/apis/ec2-2016-11-15.min.json +1292 -1235
  11. package/apis/iotfleetwise-2021-06-17.min.json +62 -13
  12. package/apis/metadata.json +7 -0
  13. package/apis/rds-2014-10-31.min.json +1 -0
  14. package/apis/sagemaker-2017-07-24.min.json +681 -662
  15. package/apis/sagemaker-featurestore-runtime-2020-07-01.min.json +9 -6
  16. package/clients/all.d.ts +2 -0
  17. package/clients/all.js +3 -1
  18. package/clients/bedrock.d.ts +1102 -0
  19. package/clients/bedrock.js +19 -0
  20. package/clients/bedrockruntime.d.ts +141 -0
  21. package/clients/bedrockruntime.js +18 -0
  22. package/clients/budgets.d.ts +8 -7
  23. package/clients/ec2.d.ts +70 -5
  24. package/clients/iotfleetwise.d.ts +71 -1
  25. package/clients/managedblockchain.d.ts +3 -3
  26. package/clients/rds.d.ts +35 -31
  27. package/clients/sagemaker.d.ts +58 -31
  28. package/clients/sagemakerfeaturestoreruntime.d.ts +7 -2
  29. package/clients/sts.d.ts +2 -1
  30. package/clients/transfer.d.ts +21 -21
  31. package/clients/wafv2.d.ts +2 -2
  32. package/dist/aws-sdk-core-react-native.js +2 -2
  33. package/dist/aws-sdk-react-native.js +90 -9
  34. package/dist/aws-sdk.js +1303 -1238
  35. package/dist/aws-sdk.min.js +74 -74
  36. package/lib/config_service_placeholders.d.ts +4 -0
  37. package/lib/core.js +1 -1
  38. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,24 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1466.0-->
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
+
13
+ ## 2.1467.0
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.
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.
16
+ * feature: Budgets: Update DescribeBudgets and DescribeBudgetNotificationsForAccount MaxResults limit to 1000.
17
+ * feature: EC2: Adds support for Customer Managed Key encryption for Amazon Verified Access resources
18
+ * feature: IoTFleetWise: AWS IoT FleetWise now supports encryption through a customer managed AWS KMS key. The PutEncryptionConfiguration and GetEncryptionConfiguration APIs were added.
19
+ * feature: SageMaker: Online store feature groups supports Standard and InMemory tier storage types for low latency storage for real-time data retrieval. The InMemory tier supports collection types List, Set, and Vector.
20
+ * feature: SageMakerFeatureStoreRuntime: Feature Store supports read/write of records with collection type features.
21
+
5
22
  ## 2.1466.0
6
23
  * feature: CognitoIdentityServiceProvider: The UserPoolType Status field is no longer used.
7
24
  * feature: Firehose: Features : Adding support for new data ingestion source to Kinesis Firehose - AWS Managed Services Kafka.
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.1466.0.min.js"></script>
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
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }