@awboost/cfn-resource-types 0.1.448 → 0.1.449

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.
@@ -169,6 +169,7 @@ export type BedrockAgentCoreMemoryAttributes = {
169
169
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html}
170
170
  */
171
171
  export type CustomConfigurationInput = {
172
+ SelfManagedConfiguration?: SelfManagedConfiguration;
172
173
  SemanticOverride?: SemanticOverride;
173
174
  SummaryOverride?: SummaryOverride;
174
175
  UserPreferenceOverride?: UserPreferenceOverride;
@@ -194,6 +195,21 @@ export type CustomMemoryStrategy = {
194
195
  */
195
196
  Namespaces?: string[];
196
197
  };
198
+ /**
199
+ * Type definition for `AWS::BedrockAgentCore::Memory.InvocationConfigurationInput`.
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html}
201
+ */
202
+ export type InvocationConfigurationInput = {
203
+ /**
204
+ * @pattern `^[a-z0-9][a-z0-9.-]{1,61}[a-z0-9]$`
205
+ */
206
+ PayloadDeliveryBucketName?: string;
207
+ /**
208
+ * ARN format
209
+ * @pattern `^arn:aws:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
210
+ */
211
+ TopicArn?: string;
212
+ };
197
213
  /**
198
214
  * Type definition for `AWS::BedrockAgentCore::Memory.MemoryStatus`.
199
215
  * Status of the Memory resource
@@ -210,6 +226,33 @@ export type MemoryStrategy = {
210
226
  SummaryMemoryStrategy?: SummaryMemoryStrategy;
211
227
  UserPreferenceMemoryStrategy?: UserPreferenceMemoryStrategy;
212
228
  };
229
+ /**
230
+ * Type definition for `AWS::BedrockAgentCore::Memory.MessageBasedTriggerInput`.
231
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-messagebasedtriggerinput.html}
232
+ */
233
+ export type MessageBasedTriggerInput = {
234
+ /**
235
+ * @min `1`
236
+ * @max `50`
237
+ */
238
+ MessageCount?: number;
239
+ };
240
+ /**
241
+ * Type definition for `AWS::BedrockAgentCore::Memory.SelfManagedConfiguration`.
242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-selfmanagedconfiguration.html}
243
+ */
244
+ export type SelfManagedConfiguration = {
245
+ /**
246
+ * @min `0`
247
+ * @max `50`
248
+ */
249
+ HistoricalContextWindowSize?: number;
250
+ InvocationConfiguration?: InvocationConfigurationInput;
251
+ /**
252
+ * @minLength `1`
253
+ */
254
+ TriggerConditions?: TriggerConditionInput[];
255
+ };
213
256
  /**
214
257
  * Type definition for `AWS::BedrockAgentCore::Memory.SemanticMemoryStrategy`.
215
258
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-semanticmemorystrategy.html}
@@ -310,6 +353,37 @@ export type SummaryOverrideConsolidationConfigurationInput = {
310
353
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tagsmap.html}
311
354
  */
312
355
  export type TagsMap = Record<string, string>;
356
+ /**
357
+ * Type definition for `AWS::BedrockAgentCore::Memory.TimeBasedTriggerInput`.
358
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-timebasedtriggerinput.html}
359
+ */
360
+ export type TimeBasedTriggerInput = {
361
+ /**
362
+ * @min `10`
363
+ * @max `3000`
364
+ */
365
+ IdleSessionTimeout?: number;
366
+ };
367
+ /**
368
+ * Type definition for `AWS::BedrockAgentCore::Memory.TokenBasedTriggerInput`.
369
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-tokenbasedtriggerinput.html}
370
+ */
371
+ export type TokenBasedTriggerInput = {
372
+ /**
373
+ * @min `100`
374
+ * @max `500000`
375
+ */
376
+ TokenCount?: number;
377
+ };
378
+ /**
379
+ * Type definition for `AWS::BedrockAgentCore::Memory.TriggerConditionInput`.
380
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-triggerconditioninput.html}
381
+ */
382
+ export type TriggerConditionInput = {
383
+ MessageBasedTrigger?: MessageBasedTriggerInput;
384
+ TimeBasedTrigger?: TimeBasedTriggerInput;
385
+ TokenBasedTrigger?: TokenBasedTriggerInput;
386
+ };
313
387
  /**
314
388
  * Type definition for `AWS::BedrockAgentCore::Memory.UserPreferenceMemoryStrategy`.
315
389
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-userpreferencememorystrategy.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.448",
3
+ "version": "0.1.449",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },