aws-sdk 2.1603.0 → 2.1605.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/README.md +1 -1
- package/apis/bedrock-2023-04-20.min.json +1059 -90
- package/apis/bedrock-2023-04-20.paginators.json +12 -0
- package/apis/bedrock-agent-2023-06-05.min.json +105 -52
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +265 -58
- package/apis/bedrock-runtime-2023-09-30.min.json +24 -0
- package/apis/ce-2017-10-25.min.json +2 -1
- package/apis/ec2-2016-11-15.min.json +139 -82
- package/apis/metadata.json +3 -0
- package/apis/payment-cryptography-2021-09-14.min.json +219 -189
- package/apis/payment-cryptography-2021-09-14.waiters2.json +5 -0
- package/apis/route53profiles-2018-05-10.examples.json +5 -0
- package/apis/route53profiles-2018-05-10.min.json +598 -0
- package/apis/route53profiles-2018-05-10.paginators.json +22 -0
- package/apis/sagemaker-2017-07-24.min.json +87 -63
- package/apis/servicediscovery-2017-03-14.examples.json +86 -0
- package/apis/transfer-2018-11-05.min.json +32 -3
- package/apis/workspaces-web-2020-07-08.min.json +84 -43
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/bedrock.d.ts +1082 -118
- package/clients/bedrockagent.d.ts +80 -2
- package/clients/bedrockagentruntime.d.ts +252 -5
- package/clients/bedrockruntime.d.ts +37 -10
- package/clients/costexplorer.d.ts +11 -7
- package/clients/ec2.d.ts +103 -39
- package/clients/paymentcryptography.d.ts +175 -147
- package/clients/paymentcryptography.js +1 -0
- package/clients/pi.d.ts +5 -5
- package/clients/rds.d.ts +1 -1
- package/clients/redshiftserverless.d.ts +5 -5
- package/clients/route53profiles.d.ts +614 -0
- package/clients/route53profiles.js +18 -0
- package/clients/sagemaker.d.ts +17 -10
- package/clients/servicediscovery.d.ts +4 -4
- package/clients/transfer.d.ts +44 -5
- package/clients/workspacesweb.d.ts +89 -23
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +297 -253
- package/dist/aws-sdk.js +147 -86
- package/dist/aws-sdk.min.js +70 -70
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
64
64
|
To use the SDK in the browser, simply add the following script tag to your
|
65
65
|
HTML pages:
|
66
66
|
|
67
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
67
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1605.0.min.js"></script>
|
68
68
|
|
69
69
|
You can also build a custom browser SDK with your specified set of AWS services.
|
70
70
|
This can allow you to reduce the SDK's size, specify different API versions of
|