@awboost/cfn-resource-types 0.1.238 → 0.1.240
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.
- package/lib/AWS-Bedrock-DataSource.d.ts +1 -1
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +312 -1
- package/lib/AWS-Bedrock-PromptVersion.d.ts +225 -26
- package/lib/AWS-CodeBuild-Fleet.d.ts +1 -1
- package/lib/AWS-Connect-RoutingProfile.d.ts +1 -1
- package/lib/AWS-EMRServerless-Application.d.ts +17 -0
- package/lib/AWS-ElastiCache-UserGroup.d.ts +2 -2
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +21 -0
- package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +8 -1
- package/lib/AWS-IoT-ThingType.d.ts +2 -2
- package/lib/AWS-Notifications-ChannelAssociation.d.ts +29 -0
- package/lib/AWS-Notifications-ChannelAssociation.js +12 -0
- package/lib/AWS-Notifications-EventRule.d.ts +76 -0
- package/lib/AWS-Notifications-EventRule.js +12 -0
- package/lib/AWS-Notifications-NotificationConfiguration.d.ts +72 -0
- package/lib/AWS-Notifications-NotificationConfiguration.js +12 -0
- package/lib/AWS-Notifications-NotificationHub.d.ts +48 -0
- package/lib/AWS-Notifications-NotificationHub.js +12 -0
- package/lib/AWS-SNS-Topic.d.ts +1 -0
- package/lib/AWS-SageMaker-Domain.d.ts +1 -1
- package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
@@ -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
|
-
|
|
118
|
-
|
|
119
|
-
|
|
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+-=,._:/@]+$`
|
|
@@ -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.
|
|
@@ -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}
|
|
@@ -6,9 +6,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type ElastiCacheUserGroupProperties = {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
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`
|
|
@@ -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
|
/**
|
|
@@ -64,14 +64,14 @@ export type PropagatingAttribute = {
|
|
|
64
64
|
*/
|
|
65
65
|
export type Tag = {
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
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
|
-
*
|
|
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
|
package/lib/AWS-SNS-Topic.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -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}
|