@aws-cdk/aws-bedrock-agentcore-alpha 2.224.0-alpha.0 → 2.225.0-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/agentcore/memory/memory-strategy.js +1 -1
- package/agentcore/memory/memory.js +2 -2
- package/agentcore/memory/strategies/managed-strategy.js +1 -1
- package/agentcore/memory/strategies/self-managed-strategy.js +1 -1
- package/agentcore/network/network-configuration.js +4 -4
- package/agentcore/runtime/runtime-artifact.js +1 -1
- package/agentcore/runtime/runtime-authorizer-configuration.js +1 -1
- package/agentcore/runtime/runtime-base.js +1 -1
- package/agentcore/runtime/runtime-endpoint-base.js +1 -1
- package/agentcore/runtime/runtime-endpoint.js +1 -1
- package/agentcore/runtime/runtime.js +1 -1
- package/agentcore/tools/browser.js +2 -2
- package/agentcore/tools/code-interpreter.js +2 -2
- package/package.json +9 -9
package/.jsii
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@aws-cdk/aws-bedrock-alpha": "2.
|
|
12
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"@aws-cdk/aws-bedrock-alpha": "2.225.0-alpha.0",
|
|
12
|
+
"aws-cdk-lib": "^2.225.0",
|
|
13
13
|
"constructs": "^10.0.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencyClosure": {
|
|
@@ -19557,6 +19557,6 @@
|
|
|
19557
19557
|
"symbolId": "agentcore/network/network-configuration:VpcConfigProps"
|
|
19558
19558
|
}
|
|
19559
19559
|
},
|
|
19560
|
-
"version": "2.
|
|
19560
|
+
"version": "2.225.0-alpha.0",
|
|
19561
19561
|
"fingerprint": "**********"
|
|
19562
19562
|
}
|
|
@@ -53,7 +53,7 @@ var MemoryStrategyType;
|
|
|
53
53
|
* @see https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/memory-strategies.html
|
|
54
54
|
*/
|
|
55
55
|
class MemoryStrategy {
|
|
56
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.MemoryStrategy", version: "2.
|
|
56
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.MemoryStrategy", version: "2.225.0-alpha.0" };
|
|
57
57
|
/**
|
|
58
58
|
* Default strategies for organizing and extracting memory data, each optimized for specific use cases.
|
|
59
59
|
* This strategy compresses conversations into concise overviews, preserving essential context and key insights for quick recall.
|
|
@@ -99,7 +99,7 @@ const MEMORY_EXPIRATION_DAYS_MAX = 365;
|
|
|
99
99
|
* Contains methods and attributes valid for Memories either created with CDK or imported.
|
|
100
100
|
*/
|
|
101
101
|
class MemoryBase extends aws_cdk_lib_1.Resource {
|
|
102
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.MemoryBase", version: "2.
|
|
102
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.MemoryBase", version: "2.225.0-alpha.0" };
|
|
103
103
|
constructor(scope, id) {
|
|
104
104
|
super(scope, id);
|
|
105
105
|
}
|
|
@@ -352,7 +352,7 @@ let Memory = (() => {
|
|
|
352
352
|
Memory = _classThis = _classDescriptor.value;
|
|
353
353
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
354
354
|
}
|
|
355
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.Memory", version: "2.
|
|
355
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.Memory", version: "2.225.0-alpha.0" };
|
|
356
356
|
/** Uniquely identifies this class. */
|
|
357
357
|
static PROPERTY_INJECTION_ID = '@aws-cdk.aws-bedrock-agentcore-alpha.Memory';
|
|
358
358
|
/**
|
|
@@ -25,7 +25,7 @@ const PROMPT_MAX_LENGTH = 30000;
|
|
|
25
25
|
* with specific models and prompt templates.
|
|
26
26
|
*/
|
|
27
27
|
class ManagedMemoryStrategy {
|
|
28
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.ManagedMemoryStrategy", version: "2.
|
|
28
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.ManagedMemoryStrategy", version: "2.225.0-alpha.0" };
|
|
29
29
|
name;
|
|
30
30
|
description;
|
|
31
31
|
/**
|
|
@@ -74,7 +74,7 @@ const DEFAULT_TOKEN_BASED_TRIGGER = 100;
|
|
|
74
74
|
* Use AgentCore memory for event storage with custom triggers. Define memory processing logic in your own environment.
|
|
75
75
|
*/
|
|
76
76
|
class SelfManagedMemoryStrategy {
|
|
77
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.SelfManagedMemoryStrategy", version: "2.
|
|
77
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.SelfManagedMemoryStrategy", version: "2.225.0-alpha.0" };
|
|
78
78
|
name;
|
|
79
79
|
description;
|
|
80
80
|
strategyType;
|
|
@@ -9,7 +9,7 @@ const ec2 = require("aws-cdk-lib/aws-ec2");
|
|
|
9
9
|
* Abstract base class for network configuration.
|
|
10
10
|
*/
|
|
11
11
|
class NetworkConfiguration {
|
|
12
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.NetworkConfiguration", version: "2.
|
|
12
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.NetworkConfiguration", version: "2.225.0-alpha.0" };
|
|
13
13
|
/**
|
|
14
14
|
* The network mode to use.
|
|
15
15
|
* Configure the security level for agent
|
|
@@ -88,7 +88,7 @@ exports.NetworkConfiguration = NetworkConfiguration;
|
|
|
88
88
|
* Network configuration for the Browser tool.
|
|
89
89
|
*/
|
|
90
90
|
class BrowserNetworkConfiguration extends NetworkConfiguration {
|
|
91
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserNetworkConfiguration", version: "2.
|
|
91
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserNetworkConfiguration", version: "2.225.0-alpha.0" };
|
|
92
92
|
/**
|
|
93
93
|
* Creates a public network configuration. PUBLIC is the default network mode.
|
|
94
94
|
* @returns A BrowserNetworkConfiguration.
|
|
@@ -134,7 +134,7 @@ exports.BrowserNetworkConfiguration = BrowserNetworkConfiguration;
|
|
|
134
134
|
* Network configuration for the Code Interpreter tool.
|
|
135
135
|
*/
|
|
136
136
|
class CodeInterpreterNetworkConfiguration extends NetworkConfiguration {
|
|
137
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterNetworkConfiguration", version: "2.
|
|
137
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterNetworkConfiguration", version: "2.225.0-alpha.0" };
|
|
138
138
|
/**
|
|
139
139
|
* Creates a public network configuration.
|
|
140
140
|
* @returns A CodeInterpreterNetworkConfiguration.
|
|
@@ -188,7 +188,7 @@ exports.CodeInterpreterNetworkConfiguration = CodeInterpreterNetworkConfiguratio
|
|
|
188
188
|
* Network configuration for the Runtime.
|
|
189
189
|
*/
|
|
190
190
|
class RuntimeNetworkConfiguration extends NetworkConfiguration {
|
|
191
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeNetworkConfiguration", version: "2.
|
|
191
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeNetworkConfiguration", version: "2.225.0-alpha.0" };
|
|
192
192
|
/**
|
|
193
193
|
* Creates a public network configuration. PUBLIC is the default network mode.
|
|
194
194
|
* @returns A RuntimeNetworkConfiguration.
|
|
@@ -10,7 +10,7 @@ const validation_helpers_1 = require("./validation-helpers");
|
|
|
10
10
|
* Provides methods to reference container images from ECR repositories or local assets.
|
|
11
11
|
*/
|
|
12
12
|
class AgentRuntimeArtifact {
|
|
13
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.AgentRuntimeArtifact", version: "2.
|
|
13
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.AgentRuntimeArtifact", version: "2.225.0-alpha.0" };
|
|
14
14
|
/**
|
|
15
15
|
* Reference an image in an ECR repository
|
|
16
16
|
*/
|
|
@@ -8,7 +8,7 @@ const validation_helpers_1 = require("./validation-helpers");
|
|
|
8
8
|
* Provides static factory methods to create different authentication types.
|
|
9
9
|
*/
|
|
10
10
|
class RuntimeAuthorizerConfiguration {
|
|
11
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeAuthorizerConfiguration", version: "2.
|
|
11
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeAuthorizerConfiguration", version: "2.225.0-alpha.0" };
|
|
12
12
|
/**
|
|
13
13
|
* Use IAM authentication (default).
|
|
14
14
|
* Requires AWS credentials to sign requests using SigV4.
|
|
@@ -26,7 +26,7 @@ const validation_helpers_1 = require("./validation-helpers");
|
|
|
26
26
|
* Base class for Agent Runtime
|
|
27
27
|
*/
|
|
28
28
|
class RuntimeBase extends aws_cdk_lib_1.Resource {
|
|
29
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeBase", version: "2.
|
|
29
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeBase", version: "2.225.0-alpha.0" };
|
|
30
30
|
/**
|
|
31
31
|
* An accessor for the Connections object that will fail if this Runtime does not have a VPC
|
|
32
32
|
* configured.
|
|
@@ -22,7 +22,7 @@ const aws_cdk_lib_1 = require("aws-cdk-lib");
|
|
|
22
22
|
* Base class for Runtime Endpoint
|
|
23
23
|
*/
|
|
24
24
|
class RuntimeEndpointBase extends aws_cdk_lib_1.Resource {
|
|
25
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeEndpointBase", version: "2.
|
|
25
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeEndpointBase", version: "2.225.0-alpha.0" };
|
|
26
26
|
constructor(scope, id) {
|
|
27
27
|
super(scope, id);
|
|
28
28
|
}
|
|
@@ -67,7 +67,7 @@ let RuntimeEndpoint = (() => {
|
|
|
67
67
|
RuntimeEndpoint = _classThis = _classDescriptor.value;
|
|
68
68
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
69
69
|
}
|
|
70
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeEndpoint", version: "2.
|
|
70
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.RuntimeEndpoint", version: "2.225.0-alpha.0" };
|
|
71
71
|
/** Uniquely identifies this class. */
|
|
72
72
|
static PROPERTY_INJECTION_ID = '@aws-cdk.aws-bedrock-agentcore-alpha.RuntimeEndpoint';
|
|
73
73
|
/**
|
|
@@ -78,7 +78,7 @@ let Runtime = (() => {
|
|
|
78
78
|
Runtime = _classThis = _classDescriptor.value;
|
|
79
79
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
80
80
|
}
|
|
81
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.Runtime", version: "2.
|
|
81
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.Runtime", version: "2.225.0-alpha.0" };
|
|
82
82
|
/** Uniquely identifies this class. */
|
|
83
83
|
static PROPERTY_INJECTION_ID = '@aws-cdk.aws-bedrock-agentcore-alpha.Runtime';
|
|
84
84
|
/**
|
|
@@ -80,7 +80,7 @@ const BROWSER_TAG_MAX_LENGTH = 256;
|
|
|
80
80
|
* Contains methods and attributes valid for Browsers either created with CDK or imported.
|
|
81
81
|
*/
|
|
82
82
|
class BrowserCustomBase extends aws_cdk_lib_1.Resource {
|
|
83
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserCustomBase", version: "2.
|
|
83
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserCustomBase", version: "2.225.0-alpha.0" };
|
|
84
84
|
/**
|
|
85
85
|
* An accessor for the Connections object that will fail if this Browser does not have a VPC
|
|
86
86
|
* configured.
|
|
@@ -338,7 +338,7 @@ let BrowserCustom = (() => {
|
|
|
338
338
|
BrowserCustom = _classThis = _classDescriptor.value;
|
|
339
339
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
340
340
|
}
|
|
341
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserCustom", version: "2.
|
|
341
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.BrowserCustom", version: "2.225.0-alpha.0" };
|
|
342
342
|
/** Uniquely identifies this class. */
|
|
343
343
|
static PROPERTY_INJECTION_ID = '@aws-cdk.aws-bedrock-agentcore-alpha.BrowserCustom';
|
|
344
344
|
/**
|
|
@@ -79,7 +79,7 @@ const CODE_INTERPRETER_TAG_MAX_LENGTH = 256;
|
|
|
79
79
|
* Contains methods and attributes valid for Code Interpreters either created with CDK or imported.
|
|
80
80
|
*/
|
|
81
81
|
class CodeInterpreterCustomBase extends aws_cdk_lib_1.Resource {
|
|
82
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterCustomBase", version: "2.
|
|
82
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterCustomBase", version: "2.225.0-alpha.0" };
|
|
83
83
|
/**
|
|
84
84
|
* An accessor for the Connections object that will fail if this Browser does not have a VPC
|
|
85
85
|
* configured.
|
|
@@ -313,7 +313,7 @@ let CodeInterpreterCustom = (() => {
|
|
|
313
313
|
CodeInterpreterCustom = _classThis = _classDescriptor.value;
|
|
314
314
|
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
315
315
|
}
|
|
316
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterCustom", version: "2.
|
|
316
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "@aws-cdk/aws-bedrock-agentcore-alpha.CodeInterpreterCustom", version: "2.225.0-alpha.0" };
|
|
317
317
|
/** Uniquely identifies this class. */
|
|
318
318
|
static PROPERTY_INJECTION_ID = '@aws-cdk.aws-bedrock-agentcore-alpha.CodeInterpreterCustom';
|
|
319
319
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/aws-bedrock-agentcore-alpha",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.225.0-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.
|
|
82
|
-
"@aws-cdk/aws-bedrock-alpha": "2.
|
|
83
|
-
"@aws-cdk/cdk-build-tools": "2.
|
|
81
|
+
"aws-cdk-lib": "2.225.0",
|
|
82
|
+
"@aws-cdk/aws-bedrock-alpha": "2.225.0-alpha.0",
|
|
83
|
+
"@aws-cdk/cdk-build-tools": "2.225.0-alpha.0",
|
|
84
84
|
"@aws-cdk/integ-runner": "^2.190.2",
|
|
85
|
-
"@aws-cdk/pkglint": "2.
|
|
86
|
-
"@aws-cdk/integ-tests-alpha": "2.
|
|
85
|
+
"@aws-cdk/pkglint": "2.225.0-alpha.0",
|
|
86
|
+
"@aws-cdk/integ-tests-alpha": "2.225.0-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.
|
|
93
|
+
"aws-cdk-lib": "^2.225.0",
|
|
94
94
|
"constructs": "^10.0.0",
|
|
95
|
-
"@aws-cdk/aws-bedrock-alpha": "2.
|
|
95
|
+
"@aws-cdk/aws-bedrock-alpha": "2.225.0-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.
|
|
126
|
+
"@aws-cdk/aws-bedrock-alpha": "^2.225.0-alpha.0"
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
}
|