@awboost/cfn-resource-types 0.1.239 → 0.1.241

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.
@@ -71,6 +71,19 @@ export type BedrockPromptVersionAttributes = {
71
71
  * @maxLength `1`
72
72
  */
73
73
  Variants: {
74
+ GenAiResource: {
75
+ /**
76
+ * Target Agent to invoke with Prompt
77
+ */
78
+ Agent: {
79
+ /**
80
+ * Arn representation of the Agent Alias.
81
+ * @maxLength `2048`
82
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
83
+ */
84
+ AgentIdentifier: string;
85
+ };
86
+ };
74
87
  InferenceConfiguration: {
75
88
  /**
76
89
  * Prompt model inference configuration
@@ -114,31 +127,10 @@ export type BedrockPromptVersionAttributes = {
114
127
  * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
115
128
  */
116
129
  Name: string;
117
- TemplateConfiguration: {
118
- /**
119
- * Configuration for text prompt template
120
- */
121
- Text: {
122
- /**
123
- * List of input variables
124
- * @minLength `0`
125
- * @maxLength `5`
126
- */
127
- InputVariables: {
128
- /**
129
- * Name for an input variable
130
- * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
131
- */
132
- Name: string;
133
- }[];
134
- /**
135
- * Prompt content for String prompt template
136
- * @minLength `1`
137
- * @maxLength `200000`
138
- */
139
- Text: string;
140
- };
141
- };
130
+ /**
131
+ * Prompt template configuration
132
+ */
133
+ TemplateConfiguration: PromptTemplateConfiguration;
142
134
  /**
143
135
  * Prompt template type
144
136
  */
@@ -152,6 +144,101 @@ export type BedrockPromptVersionAttributes = {
152
144
  */
153
145
  Version: string;
154
146
  };
147
+ /**
148
+ * Type definition for `AWS::Bedrock::PromptVersion.AnyToolChoice`.
149
+ * Any Tool choice
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-anytoolchoice.html}
151
+ */
152
+ export type AnyToolChoice = Record<string, any>;
153
+ /**
154
+ * Type definition for `AWS::Bedrock::PromptVersion.AutoToolChoice`.
155
+ * Auto Tool choice
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-autotoolchoice.html}
157
+ */
158
+ export type AutoToolChoice = Record<string, any>;
159
+ /**
160
+ * Type definition for `AWS::Bedrock::PromptVersion.ChatPromptTemplateConfiguration`.
161
+ * Configuration for chat prompt template
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-chatprompttemplateconfiguration.html}
163
+ */
164
+ export type ChatPromptTemplateConfiguration = {
165
+ /**
166
+ * List of input variables
167
+ * @minLength `0`
168
+ * @maxLength `5`
169
+ */
170
+ InputVariables?: PromptInputVariable[];
171
+ /**
172
+ * List of messages for chat prompt template
173
+ * @minLength `0`
174
+ */
175
+ Messages: Message[];
176
+ /**
177
+ * Configuration for chat prompt template
178
+ * @minLength `0`
179
+ */
180
+ System?: SystemContentBlock[];
181
+ /**
182
+ * Tool configuration
183
+ */
184
+ ToolConfiguration?: ToolConfiguration;
185
+ };
186
+ /**
187
+ * Type definition for `AWS::Bedrock::PromptVersion.ContentBlock`.
188
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-contentblock.html}
189
+ */
190
+ export type ContentBlock = {
191
+ /**
192
+ * Configuration for chat prompt template
193
+ * @minLength `1`
194
+ */
195
+ Text: string;
196
+ };
197
+ /**
198
+ * Type definition for `AWS::Bedrock::PromptVersion.ConversationRole`.
199
+ * Conversation roles for the chat prompt
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-conversationrole.html}
201
+ */
202
+ export type ConversationRole = "user" | "assistant";
203
+ /**
204
+ * Type definition for `AWS::Bedrock::PromptVersion.Message`.
205
+ * Chat prompt Message
206
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-message.html}
207
+ */
208
+ export type Message = {
209
+ /**
210
+ * List of Content Blocks
211
+ * @minLength `1`
212
+ */
213
+ Content: ContentBlock[];
214
+ /**
215
+ * Conversation roles for the chat prompt
216
+ */
217
+ Role: ConversationRole;
218
+ };
219
+ /**
220
+ * Type definition for `AWS::Bedrock::PromptVersion.PromptAgentResource`.
221
+ * Target Agent to invoke with Prompt
222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptagentresource.html}
223
+ */
224
+ export type PromptAgentResource = {
225
+ /**
226
+ * Arn representation of the Agent Alias.
227
+ * @maxLength `2048`
228
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
229
+ */
230
+ AgentIdentifier: string;
231
+ };
232
+ /**
233
+ * Type definition for `AWS::Bedrock::PromptVersion.PromptGenAiResource`.
234
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptgenairesource.html}
235
+ */
236
+ export type PromptGenAiResource = {
237
+ /**
238
+ * Target Agent to invoke with Prompt
239
+ */
240
+ Agent: PromptAgentResource;
241
+ };
155
242
  /**
156
243
  * Type definition for `AWS::Bedrock::PromptVersion.PromptInferenceConfiguration`.
157
244
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptinferenceconfiguration.html}
@@ -207,6 +294,7 @@ export type PromptModelInferenceConfiguration = {
207
294
  };
208
295
  /**
209
296
  * Type definition for `AWS::Bedrock::PromptVersion.PromptTemplateConfiguration`.
297
+ * Prompt template configuration
210
298
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-prompttemplateconfiguration.html}
211
299
  */
212
300
  export type PromptTemplateConfiguration = {
@@ -214,19 +302,25 @@ export type PromptTemplateConfiguration = {
214
302
  * Configuration for text prompt template
215
303
  */
216
304
  Text: TextPromptTemplateConfiguration;
305
+ } | {
306
+ /**
307
+ * Configuration for chat prompt template
308
+ */
309
+ Chat: ChatPromptTemplateConfiguration;
217
310
  };
218
311
  /**
219
312
  * Type definition for `AWS::Bedrock::PromptVersion.PromptTemplateType`.
220
313
  * Prompt template type
221
314
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-prompttemplatetype.html}
222
315
  */
223
- export type PromptTemplateType = "TEXT";
316
+ export type PromptTemplateType = "TEXT" | "CHAT";
224
317
  /**
225
318
  * Type definition for `AWS::Bedrock::PromptVersion.PromptVariant`.
226
319
  * Prompt variant
227
320
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptvariant.html}
228
321
  */
229
322
  export type PromptVariant = {
323
+ GenAiResource?: PromptGenAiResource;
230
324
  InferenceConfiguration?: PromptInferenceConfiguration;
231
325
  /**
232
326
  * ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
@@ -240,12 +334,40 @@ export type PromptVariant = {
240
334
  * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
241
335
  */
242
336
  Name: string;
337
+ /**
338
+ * Prompt template configuration
339
+ */
243
340
  TemplateConfiguration: PromptTemplateConfiguration;
244
341
  /**
245
342
  * Prompt template type
246
343
  */
247
344
  TemplateType: PromptTemplateType;
248
345
  };
346
+ /**
347
+ * Type definition for `AWS::Bedrock::PromptVersion.SpecificToolChoice`.
348
+ * Specific Tool choice
349
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-specifictoolchoice.html}
350
+ */
351
+ export type SpecificToolChoice = {
352
+ /**
353
+ * Tool name
354
+ * @minLength `1`
355
+ * @maxLength `64`
356
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
357
+ */
358
+ Name: string;
359
+ };
360
+ /**
361
+ * Type definition for `AWS::Bedrock::PromptVersion.SystemContentBlock`.
362
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-systemcontentblock.html}
363
+ */
364
+ export type SystemContentBlock = {
365
+ /**
366
+ * Configuration for chat prompt template
367
+ * @minLength `1`
368
+ */
369
+ Text: string;
370
+ };
249
371
  /**
250
372
  * Type definition for `AWS::Bedrock::PromptVersion.TagsMap`.
251
373
  * A map of tag keys and values
@@ -271,6 +393,83 @@ export type TextPromptTemplateConfiguration = {
271
393
  */
272
394
  Text: string;
273
395
  };
396
+ /**
397
+ * Type definition for `AWS::Bedrock::PromptVersion.Tool`.
398
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-tool.html}
399
+ */
400
+ export type Tool = {
401
+ /**
402
+ * Tool specification
403
+ */
404
+ ToolSpec: ToolSpecification;
405
+ };
406
+ /**
407
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolChoice`.
408
+ * Tool choice
409
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolchoice.html}
410
+ */
411
+ export type ToolChoice = {
412
+ /**
413
+ * Auto Tool choice
414
+ */
415
+ Auto: AutoToolChoice;
416
+ } | {
417
+ /**
418
+ * Any Tool choice
419
+ */
420
+ Any: AnyToolChoice;
421
+ } | {
422
+ /**
423
+ * Specific Tool choice
424
+ */
425
+ Tool: SpecificToolChoice;
426
+ };
427
+ /**
428
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolConfiguration`.
429
+ * Tool configuration
430
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolconfiguration.html}
431
+ */
432
+ export type ToolConfiguration = {
433
+ /**
434
+ * Tool choice
435
+ */
436
+ ToolChoice?: ToolChoice;
437
+ /**
438
+ * List of Tools
439
+ * @minLength `1`
440
+ */
441
+ Tools: Tool[];
442
+ };
443
+ /**
444
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolInputSchema`.
445
+ * Tool input schema json
446
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolinputschema.html}
447
+ */
448
+ export type ToolInputSchema = {
449
+ Json: Record<string, any>;
450
+ };
451
+ /**
452
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolSpecification`.
453
+ * Tool specification
454
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolspecification.html}
455
+ */
456
+ export type ToolSpecification = {
457
+ /**
458
+ * @minLength `1`
459
+ */
460
+ Description?: string;
461
+ /**
462
+ * Tool input schema json
463
+ */
464
+ InputSchema: ToolInputSchema;
465
+ /**
466
+ * Tool name
467
+ * @minLength `1`
468
+ * @maxLength `64`
469
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
470
+ */
471
+ Name: string;
472
+ };
274
473
  /**
275
474
  * Definition of AWS::Bedrock::PromptVersion Resource Type
276
475
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html}
@@ -11,7 +11,7 @@ export type CodeBuildFleetProperties = {
11
11
  BaseCapacity?: number;
12
12
  ComputeConfiguration?: ComputeConfiguration;
13
13
  ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "ATTRIBUTE_BASED_COMPUTE";
14
- EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM";
14
+ EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2";
15
15
  FleetProxyConfiguration?: ProxyConfiguration;
16
16
  /**
17
17
  * @pattern `^(?:arn:)[a-zA-Z+-=,._:/@]+$`
@@ -304,6 +304,10 @@ export type MonitoringConfiguration = {
304
304
  * Managed log persistence configurations for a JobRun.
305
305
  */
306
306
  ManagedPersistenceMonitoringConfiguration?: ManagedPersistenceMonitoringConfiguration;
307
+ /**
308
+ * Prometheus monitoring configurations for a JobRun.
309
+ */
310
+ PrometheusMonitoringConfiguration?: PrometheusMonitoringConfiguration;
307
311
  /**
308
312
  * S3 monitoring configurations for a JobRun.
309
313
  */
@@ -327,6 +331,19 @@ export type NetworkConfiguration = {
327
331
  */
328
332
  SubnetIds?: string[];
329
333
  };
334
+ /**
335
+ * Type definition for `AWS::EMRServerless::Application.PrometheusMonitoringConfiguration`.
336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-prometheusmonitoringconfiguration.html}
337
+ */
338
+ export type PrometheusMonitoringConfiguration = {
339
+ /**
340
+ * The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.
341
+ * @minLength `1`
342
+ * @maxLength `10280`
343
+ * @pattern `^https://aps-workspaces.([a-z]{2}-[a-z-]{1,20}-[1-9]).amazonaws(.[0-9A-Za-z]{2,4})+/workspaces/[-_.0-9A-Za-z]{1,100}/api/v1/remote_write$`
344
+ */
345
+ RemoteWriteUrl?: string;
346
+ };
330
347
  /**
331
348
  * Type definition for `AWS::EMRServerless::Application.S3MonitoringConfiguration`.
332
349
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-s3monitoringconfiguration.html}
@@ -251,6 +251,27 @@ export type ListenerAttribute = {
251
251
  * The name of the attribute.
252
252
  The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
253
253
  + ``tcp.idle_timeout.seconds`` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
254
+
255
+ The following attributes are only supported by Application Load Balancers.
256
+ + ``routing.http.request.x_amzn_mtls_clientcert_serial_number.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert-Serial-Number* HTTP request header.
257
+ + ``routing.http.request.x_amzn_mtls_clientcert_issuer.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert-Issuer* HTTP request header.
258
+ + ``routing.http.request.x_amzn_mtls_clientcert_subject.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert-Subject* HTTP request header.
259
+ + ``routing.http.request.x_amzn_mtls_clientcert_validity.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert-Validity* HTTP request header.
260
+ + ``routing.http.request.x_amzn_mtls_clientcert_leaf.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert-Leaf* HTTP request header.
261
+ + ``routing.http.request.x_amzn_mtls_clientcert.header_name`` - Enables you to modify the header name of the *X-Amzn-Mtls-Clientcert* HTTP request header.
262
+ + ``routing.http.request.x_amzn_tls_version.header_name`` - Enables you to modify the header name of the *X-Amzn-Tls-Version* HTTP request header.
263
+ + ``routing.http.request.x_amzn_tls_cipher_suite.header_name`` - Enables you to modify the header name of the *X-Amzn-Tls-Cipher-Suite* HTTP request header.
264
+ + ``routing.http.response.server.enabled`` - Enables you to allow or remove the HTTP response server header.
265
+ + ``routing.http.response.strict_transport_security.header_value`` - Informs browsers that the site should only be accessed using HTTPS, and that any future attempts to access it using HTTP should automatically be converted to HTTPS.
266
+ + ``routing.http.response.access_control_allow_origin.header_value`` - Specifies which origins are allowed to access the server.
267
+ + ``routing.http.response.access_control_allow_methods.header_value`` - Returns which HTTP methods are allowed when accessing the server from a different origin.
268
+ + ``routing.http.response.access_control_allow_headers.header_value`` - Specifies which headers can be used during the request.
269
+ + ``routing.http.response.access_control_allow_credentials.header_value`` - Indicates whether the browser should include credentials such as cookies or authentication when making requests.
270
+ + ``routing.http.response.access_control_expose_headers.header_value`` - Returns which headers the browser can expose to the requesting client.
271
+ + ``routing.http.response.access_control_max_age.header_value`` - Specifies how long the results of a preflight request can be cached, in seconds.
272
+ + ``routing.http.response.content_security_policy.header_value`` - Specifies restrictions enforced by the browser to help minimize the risk of certain types of security threats.
273
+ + ``routing.http.response.x_content_type_options.header_value`` - Indicates whether the MIME types advertised in the *Content-Type* headers should be followed and not be changed.
274
+ + ``routing.http.response.x_frame_options.header_value`` - Indicates whether the browser is allowed to render a page in a *frame*, *iframe*, *embed* or *object*.
254
275
  */
255
276
  Key?: string;
256
277
  /**
@@ -25,6 +25,9 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
25
25
  * The load balancer attributes.
26
26
  */
27
27
  LoadBalancerAttributes?: LoadBalancerAttribute[];
28
+ /**
29
+ * The minimum capacity for a load balancer.
30
+ */
28
31
  MinimumLoadBalancerCapacity?: MinimumLoadBalancerCapacity;
29
32
  /**
30
33
  * The name of the load balancer. This name must be unique per region per account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, must not begin or end with a hyphen, and must not begin with "internal-".
@@ -96,6 +99,7 @@ export type LoadBalancerAttribute = {
96
99
  + ``access_logs.s3.bucket`` - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.
97
100
  + ``access_logs.s3.prefix`` - The prefix for the location in the S3 bucket for the access logs.
98
101
  + ``ipv6.deny_all_igw_traffic`` - Blocks internet gateway (IGW) access to the load balancer. It is set to ``false`` for internet-facing load balancers and ``true`` for internal load balancers, preventing unintended access to your internal load balancer through an internet gateway.
102
+ + ``zonal_shift.config.enabled`` - Indicates whether zonal shift is enabled. The possible values are ``true`` and ``false``. The default is ``false``.
99
103
 
100
104
  The following attributes are supported by only Application Load Balancers:
101
105
  + ``idle_timeout.timeout_seconds`` - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.
@@ -118,7 +122,6 @@ export type LoadBalancerAttribute = {
118
122
 
119
123
  The following attributes are supported by only Network Load Balancers:
120
124
  + ``dns_record.client_routing_policy`` - Indicates how traffic is distributed among the load balancer Availability Zones. The possible values are ``availability_zone_affinity`` with 100 percent zonal affinity, ``partial_availability_zone_affinity`` with 85 percent zonal affinity, and ``any_availability_zone`` with 0 percent zonal affinity.
121
- + ``zonal_shift.config.enabled`` - Indicates whether zonal shift is enabled. The possible values are ``true`` and ``false``. The default is ``false``.
122
125
  */
123
126
  Key?: string;
124
127
  /**
@@ -128,9 +131,13 @@ export type LoadBalancerAttribute = {
128
131
  };
129
132
  /**
130
133
  * Type definition for `AWS::ElasticLoadBalancingV2::LoadBalancer.MinimumLoadBalancerCapacity`.
134
+ * The minimum capacity for a load balancer.
131
135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-minimumloadbalancercapacity.html}
132
136
  */
133
137
  export type MinimumLoadBalancerCapacity = {
138
+ /**
139
+ * The number of capacity units.
140
+ */
134
141
  CapacityUnits: number;
135
142
  };
136
143
  /**
@@ -0,0 +1,34 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
5
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
7
+ */
8
+ export type NotificationsManagedNotificationAccountContactAssociationProperties = {
9
+ /**
10
+ * This unique identifier for Contact
11
+ */
12
+ ContactIdentifier: ContactIdentifier;
13
+ /**
14
+ * The managed notification configuration ARN, against which the account contact association will be created
15
+ * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
16
+ */
17
+ ManagedNotificationConfigurationArn: string;
18
+ };
19
+ /**
20
+ * Type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation.ContactIdentifier`.
21
+ * This unique identifier for Contact
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-managednotificationaccountcontactassociation-contactidentifier.html}
23
+ */
24
+ export type ContactIdentifier = "ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_SECURITY" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_BILLING";
25
+ /**
26
+ * Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
27
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
29
+ */
30
+ export declare class NotificationsManagedNotificationAccountContactAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAccountContactAssociation", NotificationsManagedNotificationAccountContactAssociationProperties, Record<string, never>> {
31
+ static readonly Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
32
+ constructor(logicalId: string, properties: NotificationsManagedNotificationAccountContactAssociationProperties, options?: $ResourceOptions);
33
+ }
34
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
4
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
6
+ */
7
+ export class NotificationsManagedNotificationAccountContactAssociation extends $Resource {
8
+ static Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, NotificationsManagedNotificationAccountContactAssociation.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.js.map
@@ -0,0 +1,29 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
6
+ */
7
+ export type NotificationsManagedNotificationAdditionalChannelAssociationProperties = {
8
+ /**
9
+ * ARN identifier of the channel.
10
+ Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
11
+ * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
12
+ */
13
+ ChannelArn: string;
14
+ /**
15
+ * ARN identifier of the Managed Notification.
16
+ Example: arn:aws:notifications::381491923782:managed-notification-configuration/category/AWS-Health/sub-category/Billing
17
+ * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
18
+ */
19
+ ManagedNotificationConfigurationArn: string;
20
+ };
21
+ /**
22
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
24
+ */
25
+ export declare class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAdditionalChannelAssociation", NotificationsManagedNotificationAdditionalChannelAssociationProperties, Record<string, never>> {
26
+ static readonly Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
27
+ constructor(logicalId: string, properties: NotificationsManagedNotificationAdditionalChannelAssociationProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
5
+ */
6
+ export class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource {
7
+ static Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsManagedNotificationAdditionalChannelAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.js.map
@@ -462,7 +462,7 @@ export type LifecycleManagement = "ENABLED" | "DISABLED";
462
462
  * Type definition for `AWS::SageMaker::Domain.MlTools`.
463
463
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
464
464
  */
465
- export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
465
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard" | "PerformanceEvaluation";
466
466
  /**
467
467
  * Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
468
468
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
@@ -318,7 +318,7 @@ export type LifecycleManagement = "ENABLED" | "DISABLED";
318
318
  * Type definition for `AWS::SageMaker::UserProfile.MlTools`.
319
319
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
320
320
  */
321
- export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
321
+ export type MlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard" | "PerformanceEvaluation";
322
322
  /**
323
323
  * Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
324
324
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.239",
3
+ "version": "0.1.241",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },