@awboost/cfn-resource-types 0.1.513 → 0.1.515

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.
@@ -79,7 +79,31 @@ export type BedrockAgentCoreMemoryAttributes = {
79
79
  /**
80
80
  * Type of memory strategy
81
81
  */
82
- Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM";
82
+ Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC";
83
+ /**
84
+ * Last update timestamp of the memory strategy
85
+ */
86
+ UpdatedAt: string;
87
+ };
88
+ EpisodicMemoryStrategy: {
89
+ /**
90
+ * Creation timestamp of the memory strategy
91
+ */
92
+ CreatedAt: string;
93
+ /**
94
+ * Status of the memory strategy
95
+ */
96
+ Status: "CREATING" | "ACTIVE" | "DELETING" | "FAILED";
97
+ /**
98
+ * Unique identifier for the memory strategy
99
+ * @minLength `12`
100
+ * @pattern `^[a-zA-Z][a-zA-Z0-9-_]{0,99}-[a-zA-Z0-9]{10}$`
101
+ */
102
+ StrategyId: string;
103
+ /**
104
+ * Type of memory strategy
105
+ */
106
+ Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC";
83
107
  /**
84
108
  * Last update timestamp of the memory strategy
85
109
  */
@@ -103,7 +127,7 @@ export type BedrockAgentCoreMemoryAttributes = {
103
127
  /**
104
128
  * Type of memory strategy
105
129
  */
106
- Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM";
130
+ Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC";
107
131
  /**
108
132
  * Last update timestamp of the memory strategy
109
133
  */
@@ -127,7 +151,7 @@ export type BedrockAgentCoreMemoryAttributes = {
127
151
  /**
128
152
  * Type of memory strategy
129
153
  */
130
- Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM";
154
+ Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC";
131
155
  /**
132
156
  * Last update timestamp of the memory strategy
133
157
  */
@@ -151,7 +175,7 @@ export type BedrockAgentCoreMemoryAttributes = {
151
175
  /**
152
176
  * Type of memory strategy
153
177
  */
154
- Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM";
178
+ Type: "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE" | "CUSTOM" | "EPISODIC";
155
179
  /**
156
180
  * Last update timestamp of the memory strategy
157
181
  */
@@ -169,6 +193,7 @@ export type BedrockAgentCoreMemoryAttributes = {
169
193
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html}
170
194
  */
171
195
  export type CustomConfigurationInput = {
196
+ EpisodicOverride?: EpisodicOverride;
172
197
  SelfManagedConfiguration?: SelfManagedConfiguration;
173
198
  SemanticOverride?: SemanticOverride;
174
199
  SummaryOverride?: SummaryOverride;
@@ -195,6 +220,91 @@ export type CustomMemoryStrategy = {
195
220
  */
196
221
  Namespaces?: string[];
197
222
  };
223
+ /**
224
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicMemoryStrategy`.
225
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html}
226
+ */
227
+ export type EpisodicMemoryStrategy = {
228
+ /**
229
+ * Description of the Memory resource
230
+ */
231
+ Description?: string;
232
+ /**
233
+ * Name of the Memory resource
234
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]{0,47}$`
235
+ */
236
+ Name: string;
237
+ /**
238
+ * List of namespaces for memory strategy
239
+ * @minLength `1`
240
+ */
241
+ Namespaces?: string[];
242
+ ReflectionConfiguration?: EpisodicReflectionConfigurationInput;
243
+ };
244
+ /**
245
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicOverride`.
246
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverride.html}
247
+ */
248
+ export type EpisodicOverride = {
249
+ Consolidation?: EpisodicOverrideConsolidationConfigurationInput;
250
+ Extraction?: EpisodicOverrideExtractionConfigurationInput;
251
+ Reflection?: EpisodicOverrideReflectionConfigurationInput;
252
+ };
253
+ /**
254
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicOverrideConsolidationConfigurationInput`.
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput.html}
256
+ */
257
+ export type EpisodicOverrideConsolidationConfigurationInput = {
258
+ /**
259
+ * Text prompt for model instructions
260
+ * @minLength `1`
261
+ * @maxLength `30000`
262
+ */
263
+ AppendToPrompt: string;
264
+ ModelId: string;
265
+ };
266
+ /**
267
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicOverrideExtractionConfigurationInput`.
268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput.html}
269
+ */
270
+ export type EpisodicOverrideExtractionConfigurationInput = {
271
+ /**
272
+ * Text prompt for model instructions
273
+ * @minLength `1`
274
+ * @maxLength `30000`
275
+ */
276
+ AppendToPrompt: string;
277
+ ModelId: string;
278
+ };
279
+ /**
280
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicOverrideReflectionConfigurationInput`.
281
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput.html}
282
+ */
283
+ export type EpisodicOverrideReflectionConfigurationInput = {
284
+ /**
285
+ * Text prompt for model instructions
286
+ * @minLength `1`
287
+ * @maxLength `30000`
288
+ */
289
+ AppendToPrompt: string;
290
+ ModelId: string;
291
+ /**
292
+ * List of namespaces for memory strategy
293
+ * @minLength `1`
294
+ */
295
+ Namespaces?: string[];
296
+ };
297
+ /**
298
+ * Type definition for `AWS::BedrockAgentCore::Memory.EpisodicReflectionConfigurationInput`.
299
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicreflectionconfigurationinput.html}
300
+ */
301
+ export type EpisodicReflectionConfigurationInput = {
302
+ /**
303
+ * List of namespaces for memory strategy
304
+ * @minLength `1`
305
+ */
306
+ Namespaces: string[];
307
+ };
198
308
  /**
199
309
  * Type definition for `AWS::BedrockAgentCore::Memory.InvocationConfigurationInput`.
200
310
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html}
@@ -222,6 +332,7 @@ export type MemoryStatus = "CREATING" | "ACTIVE" | "FAILED" | "DELETING";
222
332
  */
223
333
  export type MemoryStrategy = {
224
334
  CustomMemoryStrategy?: CustomMemoryStrategy;
335
+ EpisodicMemoryStrategy?: EpisodicMemoryStrategy;
225
336
  SemanticMemoryStrategy?: SemanticMemoryStrategy;
226
337
  SummaryMemoryStrategy?: SummaryMemoryStrategy;
227
338
  UserPreferenceMemoryStrategy?: UserPreferenceMemoryStrategy;
@@ -81,6 +81,10 @@ export type BedrockAgentCoreRuntimeAttributes = {
81
81
  * Timestamp when the Agent was created
82
82
  */
83
83
  CreatedAt: string;
84
+ /**
85
+ * The reason for failure if the agent is in a failed state.
86
+ */
87
+ FailureReason: string;
84
88
  /**
85
89
  * When resource was last updated
86
90
  */
@@ -27,6 +27,16 @@ export type BillingBillingViewProperties = {
27
27
  */
28
28
  Values?: string[];
29
29
  };
30
+ TimeRange?: {
31
+ /**
32
+ * The time in ISO 8601 format, UTC time (YYYY-MM-DDTHH:MM:SSZ).
33
+ */
34
+ BeginDateInclusive?: string;
35
+ /**
36
+ * The time in ISO 8601 format, UTC time (YYYY-MM-DDTHH:MM:SSZ).
37
+ */
38
+ EndDateInclusive?: string;
39
+ };
30
40
  };
31
41
  /**
32
42
  * @maxLength `1024`
@@ -256,6 +256,7 @@ export type CustomOriginConfig = {
256
256
  For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*.
257
257
  */
258
258
  OriginKeepaliveTimeout?: number;
259
+ OriginMtlsConfig?: OriginMtlsConfig;
259
260
  /**
260
261
  * Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
261
262
  + ``http-only`` – CloudFront always uses HTTP to connect to the origin.
@@ -892,6 +893,13 @@ export type OriginGroups = {
892
893
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupselectioncriteria.html}
893
894
  */
894
895
  export type OriginGroupSelectionCriteria = "default" | "media-quality-based";
896
+ /**
897
+ * Type definition for `AWS::CloudFront::Distribution.OriginMtlsConfig`.
898
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-originmtlsconfig.html}
899
+ */
900
+ export type OriginMtlsConfig = {
901
+ ClientCertificateArn: string;
902
+ };
895
903
  /**
896
904
  * Type definition for `AWS::CloudFront::Distribution.OriginShield`.
897
905
  * CloudFront Origin Shield.
@@ -26,7 +26,7 @@ export type DMSDataProviderProperties = {
26
26
  /**
27
27
  * The property describes a data engine for the data provider.
28
28
  */
29
- Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos";
29
+ Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos" | "sybase";
30
30
  /**
31
31
  * The property describes the exact settings which can be modified
32
32
  */
@@ -139,6 +139,17 @@ export type DMSDataProviderProperties = {
139
139
  Port: number;
140
140
  ServerName: string;
141
141
  };
142
+ /**
143
+ * SybaseAseSettings property identifier.
144
+ */
145
+ SybaseAseSettings?: {
146
+ CertificateArn?: string;
147
+ DatabaseName?: string;
148
+ EncryptPassword?: boolean;
149
+ Port: number;
150
+ ServerName: string;
151
+ SslMode: SybaseSslModeValue;
152
+ };
142
153
  };
143
154
  /**
144
155
  * An array of key-value pairs to apply to this resource.
@@ -188,6 +199,11 @@ export type MongoDbAuthType = "no" | "password";
188
199
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbsslmodevalue.html}
189
200
  */
190
201
  export type MongoDbSslModeValue = "none" | "require" | "verify-full";
202
+ /**
203
+ * Type definition for `AWS::DMS::DataProvider.SybaseSslModeValue`.
204
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-sybasesslmodevalue.html}
205
+ */
206
+ export type SybaseSslModeValue = "none" | "require" | "verify-ca";
191
207
  /**
192
208
  * Type definition for `AWS::DMS::DataProvider.Tag`.
193
209
  * A key-value pair to associate with a resource.
@@ -118,6 +118,7 @@ export type FleetLaunchTemplateConfigRequest = {
118
118
  */
119
119
  export type FleetLaunchTemplateOverridesRequest = {
120
120
  AvailabilityZone?: string;
121
+ AvailabilityZoneId?: string;
121
122
  BlockDeviceMappings?: BlockDeviceMapping[];
122
123
  InstanceRequirements?: InstanceRequirementsRequest;
123
124
  InstanceType?: string;
@@ -190,6 +190,7 @@ export type LaunchTemplateConfig = {
190
190
  */
191
191
  export type LaunchTemplateOverrides = {
192
192
  AvailabilityZone?: string;
193
+ AvailabilityZoneId?: string;
193
194
  InstanceRequirements?: InstanceRequirementsRequest;
194
195
  InstanceType?: string;
195
196
  Priority?: number;
@@ -341,6 +342,7 @@ export type SpotMaintenanceStrategies = {
341
342
  */
342
343
  export type SpotPlacement = {
343
344
  AvailabilityZone?: string;
345
+ AvailabilityZoneId?: string;
344
346
  GroupName?: string;
345
347
  Tenancy?: "dedicated" | "default" | "host";
346
348
  };
@@ -1,7 +1,8 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::EC2::VPNConcentrator
4
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
5
+ * Describes a VPN concentrator.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
6
7
  */
7
8
  export type EC2VPNConcentratorProperties = {
@@ -10,11 +11,11 @@ export type EC2VPNConcentratorProperties = {
10
11
  */
11
12
  Tags?: Tag[];
12
13
  /**
13
- * The ID of the transit gateway
14
+ * The ID of the transit gateway associated with the VPN concentrator.
14
15
  */
15
16
  TransitGatewayId: string;
16
17
  /**
17
- * The type of VPN concentrator
18
+ * The type of VPN concentrator.
18
19
  */
19
20
  Type: string;
20
21
  };
@@ -23,25 +24,29 @@ export type EC2VPNConcentratorProperties = {
23
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#aws-resource-ec2-vpnconcentrator-return-values}
24
25
  */
25
26
  export type EC2VPNConcentratorAttributes = {
26
- /**
27
- * The ID of the transit gateway attachment
28
- */
29
27
  TransitGatewayAttachmentId: string;
30
- /**
31
- * The provider-assigned unique ID for this managed resource
32
- */
33
28
  VpnConcentratorId: string;
34
29
  };
35
30
  /**
36
31
  * Type definition for `AWS::EC2::VPNConcentrator.Tag`.
32
+ * Describes a tag.
37
33
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconcentrator-tag.html}
38
34
  */
39
35
  export type Tag = {
36
+ /**
37
+ * The key of the tag.
38
+ Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.
39
+ */
40
40
  Key: string;
41
+ /**
42
+ * The value of the tag.
43
+ Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
44
+ */
41
45
  Value: string;
42
46
  };
43
47
  /**
44
- * Resource Type definition for AWS::EC2::VPNConcentrator
48
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
49
+ * Describes a VPN concentrator.
45
50
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
46
51
  */
47
52
  export declare class EC2VPNConcentrator extends $Resource<"AWS::EC2::VPNConcentrator", EC2VPNConcentratorProperties, EC2VPNConcentratorAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::EC2::VPNConcentrator
3
+ * Resource type definition for `AWS::EC2::VPNConcentrator`.
4
+ * Describes a VPN concentrator.
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
5
6
  */
6
7
  export class EC2VPNConcentrator extends $Resource {
@@ -67,6 +67,9 @@ export type EC2VPNConnectionProperties = {
67
67
  Required if ``OutsideIpAddressType`` is set to ``PrivateIpv4``.
68
68
  */
69
69
  TransportTransitGatewayAttachmentId?: string;
70
+ /**
71
+ * The desired bandwidth specification for the VPN tunnel, used when creating or modifying VPN connection options to set the tunnel's throughput capacity. ``standard`` supports up to 1.25 Gbps per tunnel, while ``large`` supports up to 5 Gbps per tunnel. The default value is ``standard``. Existing VPN connections without a bandwidth setting will automatically default to ``standard``.
72
+ */
70
73
  TunnelBandwidth?: "standard" | "large";
71
74
  /**
72
75
  * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.
@@ -77,6 +80,9 @@ export type EC2VPNConnectionProperties = {
77
80
  * The type of VPN connection.
78
81
  */
79
82
  Type: string;
83
+ /**
84
+ * The ID of the VPN connection.
85
+ */
80
86
  VpnConcentratorId?: string;
81
87
  /**
82
88
  * The ID of the virtual private gateway at the AWS side of the VPN connection.
@@ -101,8 +107,19 @@ export type EC2VPNConnectionAttributes = {
101
107
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
102
108
  */
103
109
  export type CloudwatchLogOptionsSpecification = {
110
+ /**
111
+ * Specifies whether to enable BGP logging for the VPN connection. Default value is ``False``.
112
+ Valid values: ``True`` | ``False``
113
+ */
104
114
  BgpLogEnabled?: boolean;
115
+ /**
116
+ * The Amazon Resource Name (ARN) of the CloudWatch log group where BGP logs will be sent.
117
+ */
105
118
  BgpLogGroupArn?: string;
119
+ /**
120
+ * The desired output format for BGP logs to be sent to CloudWatch. Default format is ``json``.
121
+ Valid values: ``json`` | ``text``
122
+ */
106
123
  BgpLogOutputFormat?: "json" | "text";
107
124
  /**
108
125
  * Enable or disable VPN tunnel logging feature. Default value is ``False``.
@@ -26,6 +26,9 @@ export type Route53HostedZoneProperties = {
26
26
  If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
27
27
  */
28
28
  HostedZoneConfig?: HostedZoneConfig;
29
+ /**
30
+ * The features configuration for the hosted zone, including accelerated recovery settings and status information.
31
+ */
29
32
  HostedZoneFeatures?: HostedZoneFeatures;
30
33
  /**
31
34
  * Adds, edits, or deletes tags for a health check or a hosted zone.
@@ -77,12 +80,10 @@ export type HostedZoneConfig = {
77
80
  };
78
81
  /**
79
82
  * Type definition for `AWS::Route53::HostedZone.HostedZoneFeatures`.
83
+ * Represents the features configuration for a hosted zone, including the status of various features and any associated failure reasons.
80
84
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html}
81
85
  */
82
86
  export type HostedZoneFeatures = {
83
- /**
84
- * Enable accelerated recovery on your public hosted zone to gain the ability to make changes to DNS records in the event of us-east-1 unavailability.
85
- */
86
87
  EnableAcceleratedRecovery?: boolean;
87
88
  };
88
89
  /**
@@ -1161,7 +1161,7 @@ export type Rule = {
1161
1161
  AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload;
1162
1162
  /**
1163
1163
  * Indicates when objects are deleted from Amazon S3 and Amazon S3 Glacier. The date value must be in ISO 8601 format. The time is always midnight UTC. If you specify an expiration and transition time, you must use the same time unit for both properties (either in days or by date). The expiration time must also be later than the transition time.
1164
- * @pattern `^([0-2]\d{3})-(0[0-9]|1[0-2])-([0-2]\d|3[01])T([01]\d|2[0-4]):([0-5]\d):([0-6]\d)((\.\d{3})?)Z$`
1164
+ * @pattern `^(\d{4})-(0[0-9]|1[0-2])-([0-2]\d|3[01])T([01]\d|2[0-4]):([0-5]\d):([0-6]\d)((\.\d{3})?)Z$`
1165
1165
  */
1166
1166
  ExpirationDate?: string;
1167
1167
  /**
@@ -1443,7 +1443,7 @@ export type Transition = {
1443
1443
  StorageClass: "DEEP_ARCHIVE" | "GLACIER" | "Glacier" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "STANDARD_IA";
1444
1444
  /**
1445
1445
  * Indicates when objects are transitioned to the specified storage class. The date value must be in ISO 8601 format. The time is always midnight UTC.
1446
- * @pattern `^([0-2]\d{3})-(0[0-9]|1[0-2])-([0-2]\d|3[01])T([01]\d|2[0-4]):([0-5]\d):([0-6]\d)((\.\d{3})?)Z$`
1446
+ * @pattern `^(\d{4})-(0[0-9]|1[0-2])-([0-2]\d|3[01])T([01]\d|2[0-4]):([0-5]\d):([0-6]\d)((\.\d{3})?)Z$`
1447
1447
  */
1448
1448
  TransitionDate?: string;
1449
1449
  /**
@@ -72,7 +72,7 @@ export type AIPromptTemplateType = "TEXT";
72
72
  * Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
73
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
74
74
  */
75
- export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "EMAIL_QUERY_REFORMULATION";
75
+ export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "EMAIL_QUERY_REFORMULATION" | "ORCHESTRATION" | "NOTE_TAKING" | "CASE_SUMMARIZATION";
76
76
  /**
77
77
  * Type definition for `AWS::Wisdom::AIPrompt.Tags`.
78
78
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
@@ -40,12 +40,28 @@ export type AssociationData = {
40
40
  * @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$`
41
41
  */
42
42
  KnowledgeBaseId: string;
43
+ } | {
44
+ ExternalBedrockKnowledgeBaseConfig: ExternalBedrockKnowledgeBaseConfig;
43
45
  };
44
46
  /**
45
47
  * Type definition for `AWS::Wisdom::AssistantAssociation.AssociationType`.
46
48
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-associationtype.html}
47
49
  */
48
- export type AssociationType = "KNOWLEDGE_BASE";
50
+ export type AssociationType = "KNOWLEDGE_BASE" | "EXTERNAL_BEDROCK_KNOWLEDGE_BASE";
51
+ /**
52
+ * Type definition for `AWS::Wisdom::AssistantAssociation.ExternalBedrockKnowledgeBaseConfig`.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html}
54
+ */
55
+ export type ExternalBedrockKnowledgeBaseConfig = {
56
+ /**
57
+ * @pattern `^arn:aws:iam::[0-9]{12}:role/(?:service-role/)?[a-zA-Z0-9_+=,.@-]{1,64}$`
58
+ */
59
+ AccessRoleArn: string;
60
+ /**
61
+ * @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+$`
62
+ */
63
+ BedrockKnowledgeBaseArn: string;
64
+ };
49
65
  /**
50
66
  * Type definition for `AWS::Wisdom::AssistantAssociation.Tag`.
51
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-tag.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.513",
3
+ "version": "0.1.515",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },