cdk-lambda-subminute 2.0.436 → 2.0.437
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +98 -52
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +197 -51
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/payment-cryptography-2021-09-14.min.json +219 -189
- package/node_modules/aws-sdk/apis/payment-cryptography-2021-09-14.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.min.json +598 -0
- package/node_modules/aws-sdk/apis/route53profiles-2018-05-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +87 -63
- package/node_modules/aws-sdk/apis/servicediscovery-2017-03-14.examples.json +86 -0
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +32 -3
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +56 -0
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +187 -4
- package/node_modules/aws-sdk/clients/paymentcryptography.d.ts +175 -147
- package/node_modules/aws-sdk/clients/paymentcryptography.js +1 -0
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +5 -5
- package/node_modules/aws-sdk/clients/route53profiles.d.ts +614 -0
- package/node_modules/aws-sdk/clients/route53profiles.js +18 -0
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +17 -10
- package/node_modules/aws-sdk/clients/servicediscovery.d.ts +4 -4
- package/node_modules/aws-sdk/clients/transfer.d.ts +44 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +291 -247
- package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +6 -6
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -381,6 +381,7 @@ export abstract class ConfigurationServicePlaceholders {
|
|
381
381
|
codeconnections?: AWS.CodeConnections.Types.ClientConfiguration;
|
382
382
|
deadline?: AWS.Deadline.Types.ClientConfiguration;
|
383
383
|
controlcatalog?: AWS.ControlCatalog.Types.ClientConfiguration;
|
384
|
+
route53profiles?: AWS.Route53Profiles.Types.ClientConfiguration;
|
384
385
|
}
|
385
386
|
export interface ConfigurationServiceApiVersions {
|
386
387
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -764,4 +765,5 @@ export interface ConfigurationServiceApiVersions {
|
|
764
765
|
codeconnections?: AWS.CodeConnections.Types.apiVersion;
|
765
766
|
deadline?: AWS.Deadline.Types.apiVersion;
|
766
767
|
controlcatalog?: AWS.ControlCatalog.Types.apiVersion;
|
768
|
+
route53profiles?: AWS.Route53Profiles.Types.apiVersion;
|
767
769
|
}
|
package/package.json
CHANGED
@@ -67,7 +67,7 @@
|
|
67
67
|
},
|
68
68
|
"dependencies": {
|
69
69
|
"aws-cdk-lib": "^2.95.0",
|
70
|
-
"aws-sdk": "^2.
|
70
|
+
"aws-sdk": "^2.1604.0",
|
71
71
|
"constructs": "^10.0.5"
|
72
72
|
},
|
73
73
|
"bundledDependencies": [
|
@@ -89,7 +89,7 @@
|
|
89
89
|
],
|
90
90
|
"main": "lib/index.js",
|
91
91
|
"license": "Apache-2.0",
|
92
|
-
"version": "2.0.
|
92
|
+
"version": "2.0.437",
|
93
93
|
"jest": {
|
94
94
|
"testMatch": [
|
95
95
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|