@awboost/cfn-resource-types 0.1.238 → 0.1.239

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.
@@ -261,7 +261,7 @@ export type DataSourceStatus = "AVAILABLE" | "DELETING" | "DELETE_UNSUCCESSFUL";
261
261
  * The type of the data source location.
262
262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcetype.html}
263
263
  */
264
- export type DataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM";
264
+ export type DataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM" | "REDSHIFT_METADATA";
265
265
  /**
266
266
  * Type definition for `AWS::Bedrock::DataSource.FixedSizeChunkingConfiguration`.
267
267
  * Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
@@ -83,6 +83,25 @@ export type BedrockEmbeddingModelConfiguration = {
83
83
  */
84
84
  Dimensions?: number;
85
85
  };
86
+ /**
87
+ * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
88
+ * Curated query or question and answer pair
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-curatedquery.html}
90
+ */
91
+ export type CuratedQuery = {
92
+ /**
93
+ * Question for the curated query
94
+ * @minLength `1`
95
+ * @maxLength `1000`
96
+ */
97
+ NaturalLanguage: string;
98
+ /**
99
+ * Answer for the curated query
100
+ * @minLength `1`
101
+ * @maxLength `1000`
102
+ */
103
+ Sql: string;
104
+ };
86
105
  /**
87
106
  * Type definition for `AWS::Bedrock::KnowledgeBase.EmbeddingModelConfiguration`.
88
107
  * The embeddings model configuration details for the vector model used in Knowledge Base.
@@ -94,6 +113,12 @@ export type EmbeddingModelConfiguration = {
94
113
  */
95
114
  BedrockEmbeddingModelConfiguration?: BedrockEmbeddingModelConfiguration;
96
115
  };
116
+ /**
117
+ * Type definition for `AWS::Bedrock::KnowledgeBase.InclusionType`.
118
+ * Include or Exclude status for an entity
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-inclusiontype.html}
120
+ */
121
+ export type InclusionType = "INCLUDE" | "EXCLUDE";
97
122
  /**
98
123
  * Type definition for `AWS::Bedrock::KnowledgeBase.KendraKnowledgeBaseConfiguration`.
99
124
  * Configurations for a Kendra knowledge base
@@ -116,6 +141,10 @@ export type KnowledgeBaseConfiguration = {
116
141
  * Configurations for a Kendra knowledge base
117
142
  */
118
143
  KendraKnowledgeBaseConfiguration?: KendraKnowledgeBaseConfiguration;
144
+ /**
145
+ * Configurations for a SQL knowledge base
146
+ */
147
+ SqlKnowledgeBaseConfiguration?: SqlKnowledgeBaseConfiguration;
119
148
  /**
120
149
  * The type of a knowledge base.
121
150
  */
@@ -142,7 +171,7 @@ export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "R
142
171
  * The type of a knowledge base.
143
172
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasetype.html}
144
173
  */
145
- export type KnowledgeBaseType = "VECTOR" | "KENDRA";
174
+ export type KnowledgeBaseType = "VECTOR" | "KENDRA" | "SQL";
146
175
  /**
147
176
  * Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasConfiguration`.
148
177
  * Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
@@ -309,6 +338,95 @@ export type PineconeFieldMapping = {
309
338
  */
310
339
  TextField: string;
311
340
  };
341
+ /**
342
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryEngineType`.
343
+ * SQL query engine type
344
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-queryenginetype.html}
345
+ */
346
+ export type QueryEngineType = "REDSHIFT";
347
+ /**
348
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationColumn`.
349
+ * Redshift query generation column
350
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationcolumn.html}
351
+ */
352
+ export type QueryGenerationColumn = {
353
+ /**
354
+ * Description for the attached entity
355
+ * @minLength `1`
356
+ * @maxLength `200`
357
+ */
358
+ Description?: string;
359
+ /**
360
+ * Include or Exclude status for an entity
361
+ */
362
+ Inclusion?: InclusionType;
363
+ /**
364
+ * Query generation column name
365
+ * @minLength `1`
366
+ * @maxLength `127`
367
+ */
368
+ Name?: string;
369
+ };
370
+ /**
371
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationConfiguration`.
372
+ * Configurations for generating Redshift engine queries
373
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationconfiguration.html}
374
+ */
375
+ export type QueryGenerationConfiguration = {
376
+ /**
377
+ * Max query execution timeout
378
+ * @min `1`
379
+ * @max `200`
380
+ */
381
+ ExecutionTimeoutSeconds?: number;
382
+ /**
383
+ * Context used to improve query generation
384
+ */
385
+ GenerationContext?: QueryGenerationContext;
386
+ };
387
+ /**
388
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationContext`.
389
+ * Context used to improve query generation
390
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationcontext.html}
391
+ */
392
+ export type QueryGenerationContext = {
393
+ /**
394
+ * List of example queries and results
395
+ * @maxLength `10`
396
+ */
397
+ CuratedQueries?: CuratedQuery[];
398
+ /**
399
+ * List of tables used for Redshift query generation context
400
+ * @maxLength `50`
401
+ */
402
+ Tables?: QueryGenerationTable[];
403
+ };
404
+ /**
405
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationTable`.
406
+ * Tables used for Redshift query generation context
407
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationtable.html}
408
+ */
409
+ export type QueryGenerationTable = {
410
+ /**
411
+ * List of Redshift query generation columns
412
+ */
413
+ Columns?: QueryGenerationColumn[];
414
+ /**
415
+ * Description for the attached entity
416
+ * @minLength `1`
417
+ * @maxLength `200`
418
+ */
419
+ Description?: string;
420
+ /**
421
+ * Include or Exclude status for an entity
422
+ */
423
+ Inclusion?: InclusionType;
424
+ /**
425
+ * Query generation table name. Must follow three-part notation
426
+ * @pattern `^.*\..*\..*$`
427
+ */
428
+ Name: string;
429
+ };
312
430
  /**
313
431
  * Type definition for `AWS::Bedrock::KnowledgeBase.RdsConfiguration`.
314
432
  * Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.
@@ -373,6 +491,184 @@ export type RdsFieldMapping = {
373
491
  */
374
492
  VectorField: string;
375
493
  };
494
+ /**
495
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftConfiguration`.
496
+ * Configurations for a Redshift knowledge base
497
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftconfiguration.html}
498
+ */
499
+ export type RedshiftConfiguration = {
500
+ /**
501
+ * Configurations for Redshift query engine
502
+ */
503
+ QueryEngineConfiguration: RedshiftQueryEngineConfiguration;
504
+ /**
505
+ * Configurations for generating Redshift engine queries
506
+ */
507
+ QueryGenerationConfiguration?: QueryGenerationConfiguration;
508
+ /**
509
+ * List of configurations for available Redshift query engine storage types
510
+ * @minLength `1`
511
+ * @maxLength `1`
512
+ */
513
+ StorageConfigurations: RedshiftQueryEngineStorageConfiguration[];
514
+ };
515
+ /**
516
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedAuthConfiguration`.
517
+ * Configurations for Redshift query engine provisioned auth setup
518
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedauthconfiguration.html}
519
+ */
520
+ export type RedshiftProvisionedAuthConfiguration = {
521
+ /**
522
+ * Redshift database user
523
+ */
524
+ DatabaseUser?: string;
525
+ /**
526
+ * Provisioned Redshift auth type
527
+ */
528
+ Type: RedshiftProvisionedAuthType;
529
+ /**
530
+ * Arn of a SecretsManager Secret
531
+ * @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
532
+ */
533
+ UsernamePasswordSecretArn?: string;
534
+ };
535
+ /**
536
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedAuthType`.
537
+ * Provisioned Redshift auth type
538
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedauthtype.html}
539
+ */
540
+ export type RedshiftProvisionedAuthType = "IAM" | "USERNAME_PASSWORD" | "USERNAME";
541
+ /**
542
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedConfiguration`.
543
+ * Configurations for provisioned Redshift query engine
544
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedconfiguration.html}
545
+ */
546
+ export type RedshiftProvisionedConfiguration = {
547
+ /**
548
+ * Configurations for Redshift query engine provisioned auth setup
549
+ */
550
+ AuthConfiguration: RedshiftProvisionedAuthConfiguration;
551
+ /**
552
+ * Redshift cluster identifier
553
+ * @minLength `1`
554
+ * @maxLength `63`
555
+ */
556
+ ClusterIdentifier: string;
557
+ };
558
+ /**
559
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineAwsDataCatalogStorageConfiguration`.
560
+ * Configurations for Redshift query engine AWS Data Catalog backed storage
561
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineawsdatacatalogstorageconfiguration.html}
562
+ */
563
+ export type RedshiftQueryEngineAwsDataCatalogStorageConfiguration = {
564
+ /**
565
+ * List of table names in AWS Data Catalog. Must follow two part notation
566
+ * @minLength `1`
567
+ * @maxLength `1000`
568
+ */
569
+ TableNames: string[];
570
+ };
571
+ /**
572
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineConfiguration`.
573
+ * Configurations for Redshift query engine
574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineconfiguration.html}
575
+ */
576
+ export type RedshiftQueryEngineConfiguration = {
577
+ /**
578
+ * Configurations for provisioned Redshift query engine
579
+ */
580
+ ProvisionedConfiguration?: RedshiftProvisionedConfiguration;
581
+ /**
582
+ * Configurations for serverless Redshift query engine
583
+ */
584
+ ServerlessConfiguration?: RedshiftServerlessConfiguration;
585
+ /**
586
+ * Redshift query engine type
587
+ */
588
+ Type: RedshiftQueryEngineType;
589
+ };
590
+ /**
591
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineRedshiftStorageConfiguration`.
592
+ * Configurations for Redshift query engine Redshift backed storage
593
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineredshiftstorageconfiguration.html}
594
+ */
595
+ export type RedshiftQueryEngineRedshiftStorageConfiguration = {
596
+ /**
597
+ * Redshift database name
598
+ * @minLength `1`
599
+ * @maxLength `200`
600
+ */
601
+ DatabaseName: string;
602
+ };
603
+ /**
604
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineStorageConfiguration`.
605
+ * Configurations for available Redshift query engine storage types
606
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginestorageconfiguration.html}
607
+ */
608
+ export type RedshiftQueryEngineStorageConfiguration = {
609
+ /**
610
+ * Configurations for Redshift query engine AWS Data Catalog backed storage
611
+ */
612
+ AwsDataCatalogConfiguration?: RedshiftQueryEngineAwsDataCatalogStorageConfiguration;
613
+ /**
614
+ * Configurations for Redshift query engine Redshift backed storage
615
+ */
616
+ RedshiftConfiguration?: RedshiftQueryEngineRedshiftStorageConfiguration;
617
+ /**
618
+ * Redshift query engine storage type
619
+ */
620
+ Type: RedshiftQueryEngineStorageType;
621
+ };
622
+ /**
623
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineStorageType`.
624
+ * Redshift query engine storage type
625
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginestoragetype.html}
626
+ */
627
+ export type RedshiftQueryEngineStorageType = "REDSHIFT" | "AWS_DATA_CATALOG";
628
+ /**
629
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineType`.
630
+ * Redshift query engine type
631
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginetype.html}
632
+ */
633
+ export type RedshiftQueryEngineType = "SERVERLESS" | "PROVISIONED";
634
+ /**
635
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessAuthConfiguration`.
636
+ * Configurations for Redshift query engine serverless auth setup
637
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessauthconfiguration.html}
638
+ */
639
+ export type RedshiftServerlessAuthConfiguration = {
640
+ /**
641
+ * Serverless Redshift auth type
642
+ */
643
+ Type: RedshiftServerlessAuthType;
644
+ /**
645
+ * Arn of a SecretsManager Secret
646
+ * @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
647
+ */
648
+ UsernamePasswordSecretArn?: string;
649
+ };
650
+ /**
651
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessAuthType`.
652
+ * Serverless Redshift auth type
653
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessauthtype.html}
654
+ */
655
+ export type RedshiftServerlessAuthType = "IAM" | "USERNAME_PASSWORD";
656
+ /**
657
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessConfiguration`.
658
+ * Configurations for serverless Redshift query engine
659
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessconfiguration.html}
660
+ */
661
+ export type RedshiftServerlessConfiguration = {
662
+ /**
663
+ * Configurations for Redshift query engine serverless auth setup
664
+ */
665
+ AuthConfiguration: RedshiftServerlessAuthConfiguration;
666
+ /**
667
+ * Workgroup arn
668
+ * @pattern `^(arn:(aws(-[a-z]+)*):redshift-serverless:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:workgroup/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$`
669
+ */
670
+ WorkgroupArn: string;
671
+ };
376
672
  /**
377
673
  * Type definition for `AWS::Bedrock::KnowledgeBase.S3Location`.
378
674
  * An Amazon S3 location.
@@ -387,6 +683,21 @@ export type S3Location = {
387
683
  */
388
684
  URI: string;
389
685
  };
686
+ /**
687
+ * Type definition for `AWS::Bedrock::KnowledgeBase.SqlKnowledgeBaseConfiguration`.
688
+ * Configurations for a SQL knowledge base
689
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-sqlknowledgebaseconfiguration.html}
690
+ */
691
+ export type SqlKnowledgeBaseConfiguration = {
692
+ /**
693
+ * Configurations for a Redshift knowledge base
694
+ */
695
+ RedshiftConfiguration?: RedshiftConfiguration;
696
+ /**
697
+ * SQL query engine type
698
+ */
699
+ Type: QueryEngineType;
700
+ };
390
701
  /**
391
702
  * Type definition for `AWS::Bedrock::KnowledgeBase.StorageConfiguration`.
392
703
  * The vector store service in which the knowledge base is stored.
@@ -68,7 +68,7 @@ export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY" | "ROUTE_ANY_CHANNEL";
68
68
  * The channels that agents can handle in the Contact Control Panel (CCP).
69
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-channel.html}
70
70
  */
71
- export type Channel = "VOICE" | "CHAT" | "TASK";
71
+ export type Channel = "VOICE" | "CHAT" | "TASK" | "EMAIL";
72
72
  /**
73
73
  * Type definition for `AWS::Connect::RoutingProfile.CrossChannelBehavior`.
74
74
  * Defines the cross-channel routing behavior that allows an agent working on a contact in one channel to be offered a contact from a different channel.
@@ -6,9 +6,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type ElastiCacheUserGroupProperties = {
8
8
  /**
9
- * Must be redis.
9
+ * The target cache engine for the user group.
10
10
  */
11
- Engine: "redis";
11
+ Engine: "redis" | "valkey";
12
12
  /**
13
13
  * An array of key-value pairs to apply to this user.
14
14
  * @maxLength `50`
@@ -64,14 +64,14 @@ export type PropagatingAttribute = {
64
64
  */
65
65
  export type Tag = {
66
66
  /**
67
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
67
+ * Tag key (1-128 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
68
68
  * @minLength `1`
69
69
  * @maxLength `128`
70
70
  * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
71
71
  */
72
72
  Key: string;
73
73
  /**
74
- * The value for the tag. You can specify a value that is 1 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
74
+ * Tag value (1-256 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
75
75
  * @minLength `1`
76
76
  * @maxLength `256`
77
77
  */
@@ -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::ChannelAssociation Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-channelassociation.html}
6
+ */
7
+ export type NotificationsChannelAssociationProperties = {
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
+ Arn: string;
14
+ /**
15
+ * ARN identifier of the NotificationConfiguration.
16
+ Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
17
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration\/[a-z0-9]{27}$`
18
+ */
19
+ NotificationConfigurationArn: string;
20
+ };
21
+ /**
22
+ * Definition of AWS::Notifications::ChannelAssociation Resource Type
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-channelassociation.html}
24
+ */
25
+ export declare class NotificationsChannelAssociation extends $Resource<"AWS::Notifications::ChannelAssociation", NotificationsChannelAssociationProperties, Record<string, never>> {
26
+ static readonly Type = "AWS::Notifications::ChannelAssociation";
27
+ constructor(logicalId: string, properties: NotificationsChannelAssociationProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Notifications-ChannelAssociation.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::ChannelAssociation Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-channelassociation.html}
5
+ */
6
+ export class NotificationsChannelAssociation extends $Resource {
7
+ static Type = "AWS::Notifications::ChannelAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsChannelAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-ChannelAssociation.js.map
@@ -0,0 +1,76 @@
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::EventRule Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html}
6
+ */
7
+ export type NotificationsEventRuleProperties = {
8
+ /**
9
+ * @minLength `0`
10
+ * @maxLength `4096`
11
+ */
12
+ EventPattern?: string;
13
+ /**
14
+ * @minLength `1`
15
+ * @maxLength `128`
16
+ * @pattern `^([a-zA-Z0-9 \-\(\)])+$`
17
+ */
18
+ EventType: string;
19
+ /**
20
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
21
+ */
22
+ NotificationConfigurationArn: string;
23
+ /**
24
+ * @minLength `1`
25
+ */
26
+ Regions: string[];
27
+ /**
28
+ * @minLength `1`
29
+ * @maxLength `36`
30
+ * @pattern `^aws.([a-z0-9\-])+$`
31
+ */
32
+ Source: string;
33
+ };
34
+ /**
35
+ * Attribute type definition for `AWS::Notifications::EventRule`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#aws-resource-notifications-eventrule-return-values}
37
+ */
38
+ export type NotificationsEventRuleAttributes = {
39
+ /**
40
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}/rule/[a-z0-9]{27}$`
41
+ */
42
+ Arn: string;
43
+ CreationTime: string;
44
+ ManagedRules: string[];
45
+ StatusSummaryByRegion: Record<string, {
46
+ Reason: string;
47
+ Status: EventRuleStatus;
48
+ }>;
49
+ };
50
+ /**
51
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatus`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatus.html}
53
+ */
54
+ export type EventRuleStatus = "ACTIVE" | "INACTIVE" | "CREATING" | "UPDATING" | "DELETING";
55
+ /**
56
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatusSummary`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatussummary.html}
58
+ */
59
+ export type EventRuleStatusSummary = {
60
+ Reason: string;
61
+ Status: EventRuleStatus;
62
+ };
63
+ /**
64
+ * Type definition for `AWS::Notifications::EventRule.StatusSummaryByRegion`.
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-statussummarybyregion.html}
66
+ */
67
+ export type StatusSummaryByRegion = Record<string, EventRuleStatusSummary>;
68
+ /**
69
+ * Definition of AWS::Notifications::EventRule Resource Type
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html}
71
+ */
72
+ export declare class NotificationsEventRule extends $Resource<"AWS::Notifications::EventRule", NotificationsEventRuleProperties, NotificationsEventRuleAttributes> {
73
+ static readonly Type = "AWS::Notifications::EventRule";
74
+ constructor(logicalId: string, properties: NotificationsEventRuleProperties, options?: $ResourceOptions);
75
+ }
76
+ //# sourceMappingURL=AWS-Notifications-EventRule.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::EventRule Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html}
5
+ */
6
+ export class NotificationsEventRule extends $Resource {
7
+ static Type = "AWS::Notifications::EventRule";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsEventRule.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-EventRule.js.map
@@ -0,0 +1,72 @@
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::NotificationConfiguration Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html}
6
+ */
7
+ export type NotificationsNotificationConfigurationProperties = {
8
+ AggregationDuration?: AggregationDuration;
9
+ /**
10
+ * @minLength `0`
11
+ * @maxLength `256`
12
+ * @pattern `^[^\u0001-\u001F\u007F-\u009F]*$`
13
+ */
14
+ Description: string;
15
+ /**
16
+ * @minLength `1`
17
+ * @maxLength `64`
18
+ * @pattern `^[A-Za-z0-9_\-]+$`
19
+ */
20
+ Name: string;
21
+ /**
22
+ * A list of tags that are attached to the role.
23
+ */
24
+ Tags?: Tag[];
25
+ };
26
+ /**
27
+ * Attribute type definition for `AWS::Notifications::NotificationConfiguration`.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html#aws-resource-notifications-notificationconfiguration-return-values}
29
+ */
30
+ export type NotificationsNotificationConfigurationAttributes = {
31
+ /**
32
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
33
+ */
34
+ Arn: string;
35
+ CreationTime: string;
36
+ Status: NotificationConfigurationStatus;
37
+ };
38
+ /**
39
+ * Type definition for `AWS::Notifications::NotificationConfiguration.AggregationDuration`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-aggregationduration.html}
41
+ */
42
+ export type AggregationDuration = "LONG" | "SHORT" | "NONE";
43
+ /**
44
+ * Type definition for `AWS::Notifications::NotificationConfiguration.NotificationConfigurationStatus`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-notificationconfigurationstatus.html}
46
+ */
47
+ export type NotificationConfigurationStatus = "ACTIVE" | "PARTIALLY_ACTIVE" | "INACTIVE" | "DELETING";
48
+ /**
49
+ * Type definition for `AWS::Notifications::NotificationConfiguration.Tag`.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-tag.html}
51
+ */
52
+ export type Tag = {
53
+ /**
54
+ * @minLength `1`
55
+ * @maxLength `128`
56
+ */
57
+ Key: string;
58
+ /**
59
+ * @minLength `0`
60
+ * @maxLength `256`
61
+ */
62
+ Value: string;
63
+ };
64
+ /**
65
+ * Definition of AWS::Notifications::NotificationConfiguration Resource Type
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html}
67
+ */
68
+ export declare class NotificationsNotificationConfiguration extends $Resource<"AWS::Notifications::NotificationConfiguration", NotificationsNotificationConfigurationProperties, NotificationsNotificationConfigurationAttributes> {
69
+ static readonly Type = "AWS::Notifications::NotificationConfiguration";
70
+ constructor(logicalId: string, properties: NotificationsNotificationConfigurationProperties, options?: $ResourceOptions);
71
+ }
72
+ //# sourceMappingURL=AWS-Notifications-NotificationConfiguration.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::NotificationConfiguration Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html}
5
+ */
6
+ export class NotificationsNotificationConfiguration extends $Resource {
7
+ static Type = "AWS::Notifications::NotificationConfiguration";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsNotificationConfiguration.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-NotificationConfiguration.js.map
@@ -0,0 +1,48 @@
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::NotificationHub Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html}
6
+ */
7
+ export type NotificationsNotificationHubProperties = {
8
+ /**
9
+ * Region that NotificationHub is present in.
10
+ * @minLength `2`
11
+ * @maxLength `25`
12
+ * @pattern `^([a-z]{1,2})-([a-z]{1,15}-)+([0-9])$`
13
+ */
14
+ Region: string;
15
+ };
16
+ /**
17
+ * Attribute type definition for `AWS::Notifications::NotificationHub`.
18
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html#aws-resource-notifications-notificationhub-return-values}
19
+ */
20
+ export type NotificationsNotificationHubAttributes = {
21
+ CreationTime: string;
22
+ NotificationHubStatusSummary: {
23
+ NotificationHubStatus: NotificationHubStatus;
24
+ NotificationHubStatusReason: string;
25
+ };
26
+ };
27
+ /**
28
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatus`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatus.html}
30
+ */
31
+ export type NotificationHubStatus = "ACTIVE" | "REGISTERING" | "DEREGISTERING" | "INACTIVE";
32
+ /**
33
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatusSummary`.
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatussummary.html}
35
+ */
36
+ export type NotificationHubStatusSummary = {
37
+ NotificationHubStatus: NotificationHubStatus;
38
+ NotificationHubStatusReason: string;
39
+ };
40
+ /**
41
+ * Definition of AWS::Notifications::NotificationHub Resource Type
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html}
43
+ */
44
+ export declare class NotificationsNotificationHub extends $Resource<"AWS::Notifications::NotificationHub", NotificationsNotificationHubProperties, NotificationsNotificationHubAttributes> {
45
+ static readonly Type = "AWS::Notifications::NotificationHub";
46
+ constructor(logicalId: string, properties: NotificationsNotificationHubProperties, options?: $ResourceOptions);
47
+ }
48
+ //# sourceMappingURL=AWS-Notifications-NotificationHub.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::NotificationHub Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html}
5
+ */
6
+ export class NotificationsNotificationHub extends $Resource {
7
+ static Type = "AWS::Notifications::NotificationHub";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsNotificationHub.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-NotificationHub.js.map
@@ -40,6 +40,7 @@ export type SNSTopicProperties = {
40
40
  * The display name to use for an SNS topic with SMS subscriptions. The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
41
41
  */
42
42
  DisplayName?: string;
43
+ FifoThroughputScope?: string;
43
44
  /**
44
45
  * Set to true to create a FIFO topic.
45
46
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.238",
3
+ "version": "0.1.239",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },