@awboost/cfn-resource-types 0.1.447 → 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}
|
|
@@ -45,7 +45,7 @@ export type VpcLatticeAccessLogSubscriptionAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* @minLength `20`
|
|
47
47
|
* @maxLength `2048`
|
|
48
|
-
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}$`
|
|
48
|
+
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc)|(resourceconfiguration/rcfg))-[0-9a-z]{17}$`
|
|
49
49
|
*/
|
|
50
50
|
ResourceArn: string;
|
|
51
51
|
/**
|
|
@@ -7,6 +7,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeResourceGatewayProperties = {
|
|
9
9
|
IpAddressType?: "IPV4" | "IPV6" | "DUALSTACK";
|
|
10
|
+
/**
|
|
11
|
+
* The number of IPv4 addresses to allocate per ENI for the resource gateway
|
|
12
|
+
*/
|
|
13
|
+
Ipv4AddressesPerEni?: number;
|
|
10
14
|
/**
|
|
11
15
|
* @minLength `3`
|
|
12
16
|
* @maxLength `40`
|
|
@@ -10,7 +10,7 @@ export type VpcLatticeResourcePolicyProperties = {
|
|
|
10
10
|
/**
|
|
11
11
|
* @minLength `20`
|
|
12
12
|
* @maxLength `200`
|
|
13
|
-
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}$`
|
|
13
|
+
* @pattern `^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc)|(resourceconfiguration/rcfg))-[0-9a-z]{17}$`
|
|
14
14
|
*/
|
|
15
15
|
ResourceArn: string;
|
|
16
16
|
};
|