@aws-cdk/aws-bedrock-agentcore-alpha 2.232.0-alpha.0 → 2.232.2-alpha.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/.jsii +3 -3
- package/lib/gateway/gateway-base.d.ts +5 -0
- package/lib/gateway/gateway-base.js +1 -1
- package/lib/gateway/gateway.d.ts +40 -0
- package/lib/gateway/gateway.js +1 -1
- package/lib/gateway/inbound-auth/authorizer.d.ts +13 -0
- package/lib/gateway/inbound-auth/authorizer.js +3 -3
- package/lib/gateway/outbound-auth/api-key.d.ts +39 -0
- package/lib/gateway/outbound-auth/api-key.js +1 -1
- package/lib/gateway/outbound-auth/credential-provider.d.ts +7 -0
- package/lib/gateway/outbound-auth/credential-provider.js +1 -1
- package/lib/gateway/outbound-auth/iam-role.d.ts +25 -1
- package/lib/gateway/outbound-auth/oauth.d.ts +35 -0
- package/lib/gateway/protocol.d.ts +23 -0
- package/lib/gateway/protocol.js +2 -2
- package/lib/gateway/targets/schema/api-schema.d.ts +23 -0
- package/lib/gateway/targets/schema/api-schema.js +4 -4
- package/lib/gateway/targets/schema/base-schema.d.ts +24 -1
- package/lib/gateway/targets/schema/tool-schema.d.ts +35 -0
- package/lib/gateway/targets/schema/tool-schema.js +4 -4
- package/lib/gateway/targets/target-base.js +1 -1
- package/lib/gateway/targets/target-configuration.d.ts +20 -0
- package/lib/gateway/targets/target-configuration.js +5 -5
- package/lib/gateway/targets/target.d.ts +33 -0
- package/lib/gateway/targets/target.js +1 -1
- package/lib/gateway/validation-helpers.d.ts +64 -0
- package/lib/memory/memory-strategy.d.ts +13 -0
- package/lib/memory/memory-strategy.js +1 -1
- package/lib/memory/memory.d.ts +14 -0
- package/lib/memory/memory.js +2 -2
- package/lib/memory/strategies/managed-strategy.js +1 -1
- package/lib/memory/strategies/self-managed-strategy.js +1 -1
- package/lib/network/network-configuration.d.ts +19 -0
- package/lib/network/network-configuration.js +4 -4
- package/lib/runtime/runtime-artifact.d.ts +6 -0
- package/lib/runtime/runtime-artifact.js +1 -1
- package/lib/runtime/runtime-authorizer-configuration.d.ts +6 -0
- package/lib/runtime/runtime-authorizer-configuration.js +1 -1
- package/lib/runtime/runtime-base.d.ts +6 -0
- package/lib/runtime/runtime-base.js +1 -1
- package/lib/runtime/runtime-endpoint-base.js +1 -1
- package/lib/runtime/runtime-endpoint.d.ts +15 -0
- package/lib/runtime/runtime-endpoint.js +1 -1
- package/lib/runtime/runtime.d.ts +20 -0
- package/lib/runtime/runtime.js +1 -1
- package/lib/tools/browser.d.ts +28 -0
- package/lib/tools/browser.js +2 -2
- package/lib/tools/code-interpreter.d.ts +26 -0
- package/lib/tools/code-interpreter.js +2 -2
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/aws-bedrock-agentcore-alpha",
|
|
3
|
-
"version": "2.232.
|
|
3
|
+
"version": "2.232.2-alpha.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The CDK Construct Library for Amazon Bedrock",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -78,21 +78,21 @@
|
|
|
78
78
|
},
|
|
79
79
|
"license": "Apache-2.0",
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"aws-cdk-lib": "2.232.
|
|
82
|
-
"@aws-cdk/aws-bedrock-alpha": "2.232.
|
|
83
|
-
"@aws-cdk/cdk-build-tools": "2.232.
|
|
81
|
+
"aws-cdk-lib": "2.232.2",
|
|
82
|
+
"@aws-cdk/aws-bedrock-alpha": "2.232.2-alpha.0",
|
|
83
|
+
"@aws-cdk/cdk-build-tools": "2.232.2-alpha.0",
|
|
84
84
|
"@aws-cdk/integ-runner": "^2.192.2",
|
|
85
|
-
"@aws-cdk/pkglint": "2.232.
|
|
86
|
-
"@aws-cdk/integ-tests-alpha": "2.232.
|
|
85
|
+
"@aws-cdk/pkglint": "2.232.2-alpha.0",
|
|
86
|
+
"@aws-cdk/integ-tests-alpha": "2.232.2-alpha.0",
|
|
87
87
|
"@types/jest": "^29.5.14",
|
|
88
88
|
"constructs": "^10.0.0",
|
|
89
89
|
"jest": "^29.7.0"
|
|
90
90
|
},
|
|
91
91
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
92
92
|
"peerDependencies": {
|
|
93
|
-
"aws-cdk-lib": "^2.232.
|
|
93
|
+
"aws-cdk-lib": "^2.232.2",
|
|
94
94
|
"constructs": "^10.0.0",
|
|
95
|
-
"@aws-cdk/aws-bedrock-alpha": "2.232.
|
|
95
|
+
"@aws-cdk/aws-bedrock-alpha": "2.232.2-alpha.0"
|
|
96
96
|
},
|
|
97
97
|
"engines": {
|
|
98
98
|
"node": ">= 18.0.0"
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
},
|
|
124
124
|
"jsiiRosetta": {
|
|
125
125
|
"exampleDependencies": {
|
|
126
|
-
"@aws-cdk/aws-bedrock-alpha": "^2.232.
|
|
126
|
+
"@aws-cdk/aws-bedrock-alpha": "^2.232.2-alpha.0"
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|