@awboost/cfntypes 0.100.93 → 0.100.95

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.
@@ -18102,7 +18102,7 @@ export type BedrockDataSourceDataSourceStatus = "AVAILABLE" | "DELETING" | "DELE
18102
18102
  * The type of the data source location.
18103
18103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-datasource-datasourcetype.html}
18104
18104
  */
18105
- export type BedrockDataSourceDataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM";
18105
+ export type BedrockDataSourceDataSourceType = "S3" | "CONFLUENCE" | "SALESFORCE" | "SHAREPOINT" | "WEB" | "CUSTOM" | "REDSHIFT_METADATA";
18106
18106
  /**
18107
18107
  * Type definition for `AWS::Bedrock::DataSource.FixedSizeChunkingConfiguration`.
18108
18108
  * Configurations for when you choose fixed-size chunking. If you set the chunkingStrategy as NONE, exclude this field.
@@ -20683,6 +20683,25 @@ export type BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration = {
20683
20683
  */
20684
20684
  Dimensions?: number;
20685
20685
  };
20686
+ /**
20687
+ * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
20688
+ * Curated query or question and answer pair
20689
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-curatedquery.html}
20690
+ */
20691
+ export type BedrockKnowledgeBaseCuratedQuery = {
20692
+ /**
20693
+ * Question for the curated query
20694
+ * @minLength `1`
20695
+ * @maxLength `1000`
20696
+ */
20697
+ NaturalLanguage: string;
20698
+ /**
20699
+ * Answer for the curated query
20700
+ * @minLength `1`
20701
+ * @maxLength `1000`
20702
+ */
20703
+ Sql: string;
20704
+ };
20686
20705
  /**
20687
20706
  * Type definition for `AWS::Bedrock::KnowledgeBase.EmbeddingModelConfiguration`.
20688
20707
  * The embeddings model configuration details for the vector model used in Knowledge Base.
@@ -20694,6 +20713,12 @@ export type BedrockKnowledgeBaseEmbeddingModelConfiguration = {
20694
20713
  */
20695
20714
  BedrockEmbeddingModelConfiguration?: BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration;
20696
20715
  };
20716
+ /**
20717
+ * Type definition for `AWS::Bedrock::KnowledgeBase.InclusionType`.
20718
+ * Include or Exclude status for an entity
20719
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-inclusiontype.html}
20720
+ */
20721
+ export type BedrockKnowledgeBaseInclusionType = "INCLUDE" | "EXCLUDE";
20697
20722
  /**
20698
20723
  * Type definition for `AWS::Bedrock::KnowledgeBase.KendraKnowledgeBaseConfiguration`.
20699
20724
  * Configurations for a Kendra knowledge base
@@ -20716,6 +20741,10 @@ export type BedrockKnowledgeBaseKnowledgeBaseConfiguration = {
20716
20741
  * Configurations for a Kendra knowledge base
20717
20742
  */
20718
20743
  KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBaseKendraKnowledgeBaseConfiguration;
20744
+ /**
20745
+ * Configurations for a SQL knowledge base
20746
+ */
20747
+ SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBaseSqlKnowledgeBaseConfiguration;
20719
20748
  /**
20720
20749
  * The type of a knowledge base.
20721
20750
  */
@@ -20742,7 +20771,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLES
20742
20771
  * The type of a knowledge base.
20743
20772
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasetype.html}
20744
20773
  */
20745
- export type BedrockKnowledgeBaseKnowledgeBaseType = "VECTOR" | "KENDRA";
20774
+ export type BedrockKnowledgeBaseKnowledgeBaseType = "VECTOR" | "KENDRA" | "SQL";
20746
20775
  /**
20747
20776
  * Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasConfiguration`.
20748
20777
  * Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
@@ -20909,6 +20938,95 @@ export type BedrockKnowledgeBasePineconeFieldMapping = {
20909
20938
  */
20910
20939
  TextField: string;
20911
20940
  };
20941
+ /**
20942
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryEngineType`.
20943
+ * SQL query engine type
20944
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-queryenginetype.html}
20945
+ */
20946
+ export type BedrockKnowledgeBaseQueryEngineType = "REDSHIFT";
20947
+ /**
20948
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationColumn`.
20949
+ * Redshift query generation column
20950
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationcolumn.html}
20951
+ */
20952
+ export type BedrockKnowledgeBaseQueryGenerationColumn = {
20953
+ /**
20954
+ * Description for the attached entity
20955
+ * @minLength `1`
20956
+ * @maxLength `200`
20957
+ */
20958
+ Description?: string;
20959
+ /**
20960
+ * Include or Exclude status for an entity
20961
+ */
20962
+ Inclusion?: BedrockKnowledgeBaseInclusionType;
20963
+ /**
20964
+ * Query generation column name
20965
+ * @minLength `1`
20966
+ * @maxLength `127`
20967
+ */
20968
+ Name?: string;
20969
+ };
20970
+ /**
20971
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationConfiguration`.
20972
+ * Configurations for generating Redshift engine queries
20973
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationconfiguration.html}
20974
+ */
20975
+ export type BedrockKnowledgeBaseQueryGenerationConfiguration = {
20976
+ /**
20977
+ * Max query execution timeout
20978
+ * @min `1`
20979
+ * @max `200`
20980
+ */
20981
+ ExecutionTimeoutSeconds?: number;
20982
+ /**
20983
+ * Context used to improve query generation
20984
+ */
20985
+ GenerationContext?: BedrockKnowledgeBaseQueryGenerationContext;
20986
+ };
20987
+ /**
20988
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationContext`.
20989
+ * Context used to improve query generation
20990
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationcontext.html}
20991
+ */
20992
+ export type BedrockKnowledgeBaseQueryGenerationContext = {
20993
+ /**
20994
+ * List of example queries and results
20995
+ * @maxLength `10`
20996
+ */
20997
+ CuratedQueries?: BedrockKnowledgeBaseCuratedQuery[];
20998
+ /**
20999
+ * List of tables used for Redshift query generation context
21000
+ * @maxLength `50`
21001
+ */
21002
+ Tables?: BedrockKnowledgeBaseQueryGenerationTable[];
21003
+ };
21004
+ /**
21005
+ * Type definition for `AWS::Bedrock::KnowledgeBase.QueryGenerationTable`.
21006
+ * Tables used for Redshift query generation context
21007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-querygenerationtable.html}
21008
+ */
21009
+ export type BedrockKnowledgeBaseQueryGenerationTable = {
21010
+ /**
21011
+ * List of Redshift query generation columns
21012
+ */
21013
+ Columns?: BedrockKnowledgeBaseQueryGenerationColumn[];
21014
+ /**
21015
+ * Description for the attached entity
21016
+ * @minLength `1`
21017
+ * @maxLength `200`
21018
+ */
21019
+ Description?: string;
21020
+ /**
21021
+ * Include or Exclude status for an entity
21022
+ */
21023
+ Inclusion?: BedrockKnowledgeBaseInclusionType;
21024
+ /**
21025
+ * Query generation table name. Must follow three-part notation
21026
+ * @pattern `^.*\..*\..*$`
21027
+ */
21028
+ Name: string;
21029
+ };
20912
21030
  /**
20913
21031
  * Type definition for `AWS::Bedrock::KnowledgeBase.RdsConfiguration`.
20914
21032
  * Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.
@@ -20973,6 +21091,184 @@ export type BedrockKnowledgeBaseRdsFieldMapping = {
20973
21091
  */
20974
21092
  VectorField: string;
20975
21093
  };
21094
+ /**
21095
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftConfiguration`.
21096
+ * Configurations for a Redshift knowledge base
21097
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftconfiguration.html}
21098
+ */
21099
+ export type BedrockKnowledgeBaseRedshiftConfiguration = {
21100
+ /**
21101
+ * Configurations for Redshift query engine
21102
+ */
21103
+ QueryEngineConfiguration: BedrockKnowledgeBaseRedshiftQueryEngineConfiguration;
21104
+ /**
21105
+ * Configurations for generating Redshift engine queries
21106
+ */
21107
+ QueryGenerationConfiguration?: BedrockKnowledgeBaseQueryGenerationConfiguration;
21108
+ /**
21109
+ * List of configurations for available Redshift query engine storage types
21110
+ * @minLength `1`
21111
+ * @maxLength `1`
21112
+ */
21113
+ StorageConfigurations: BedrockKnowledgeBaseRedshiftQueryEngineStorageConfiguration[];
21114
+ };
21115
+ /**
21116
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedAuthConfiguration`.
21117
+ * Configurations for Redshift query engine provisioned auth setup
21118
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedauthconfiguration.html}
21119
+ */
21120
+ export type BedrockKnowledgeBaseRedshiftProvisionedAuthConfiguration = {
21121
+ /**
21122
+ * Redshift database user
21123
+ */
21124
+ DatabaseUser?: string;
21125
+ /**
21126
+ * Provisioned Redshift auth type
21127
+ */
21128
+ Type: BedrockKnowledgeBaseRedshiftProvisionedAuthType;
21129
+ /**
21130
+ * Arn of a SecretsManager Secret
21131
+ * @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
21132
+ */
21133
+ UsernamePasswordSecretArn?: string;
21134
+ };
21135
+ /**
21136
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedAuthType`.
21137
+ * Provisioned Redshift auth type
21138
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedauthtype.html}
21139
+ */
21140
+ export type BedrockKnowledgeBaseRedshiftProvisionedAuthType = "IAM" | "USERNAME_PASSWORD" | "USERNAME";
21141
+ /**
21142
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftProvisionedConfiguration`.
21143
+ * Configurations for provisioned Redshift query engine
21144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftprovisionedconfiguration.html}
21145
+ */
21146
+ export type BedrockKnowledgeBaseRedshiftProvisionedConfiguration = {
21147
+ /**
21148
+ * Configurations for Redshift query engine provisioned auth setup
21149
+ */
21150
+ AuthConfiguration: BedrockKnowledgeBaseRedshiftProvisionedAuthConfiguration;
21151
+ /**
21152
+ * Redshift cluster identifier
21153
+ * @minLength `1`
21154
+ * @maxLength `63`
21155
+ */
21156
+ ClusterIdentifier: string;
21157
+ };
21158
+ /**
21159
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineAwsDataCatalogStorageConfiguration`.
21160
+ * Configurations for Redshift query engine AWS Data Catalog backed storage
21161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineawsdatacatalogstorageconfiguration.html}
21162
+ */
21163
+ export type BedrockKnowledgeBaseRedshiftQueryEngineAwsDataCatalogStorageConfiguration = {
21164
+ /**
21165
+ * List of table names in AWS Data Catalog. Must follow two part notation
21166
+ * @minLength `1`
21167
+ * @maxLength `1000`
21168
+ */
21169
+ TableNames: string[];
21170
+ };
21171
+ /**
21172
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineConfiguration`.
21173
+ * Configurations for Redshift query engine
21174
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineconfiguration.html}
21175
+ */
21176
+ export type BedrockKnowledgeBaseRedshiftQueryEngineConfiguration = {
21177
+ /**
21178
+ * Configurations for provisioned Redshift query engine
21179
+ */
21180
+ ProvisionedConfiguration?: BedrockKnowledgeBaseRedshiftProvisionedConfiguration;
21181
+ /**
21182
+ * Configurations for serverless Redshift query engine
21183
+ */
21184
+ ServerlessConfiguration?: BedrockKnowledgeBaseRedshiftServerlessConfiguration;
21185
+ /**
21186
+ * Redshift query engine type
21187
+ */
21188
+ Type: BedrockKnowledgeBaseRedshiftQueryEngineType;
21189
+ };
21190
+ /**
21191
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineRedshiftStorageConfiguration`.
21192
+ * Configurations for Redshift query engine Redshift backed storage
21193
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryengineredshiftstorageconfiguration.html}
21194
+ */
21195
+ export type BedrockKnowledgeBaseRedshiftQueryEngineRedshiftStorageConfiguration = {
21196
+ /**
21197
+ * Redshift database name
21198
+ * @minLength `1`
21199
+ * @maxLength `200`
21200
+ */
21201
+ DatabaseName: string;
21202
+ };
21203
+ /**
21204
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineStorageConfiguration`.
21205
+ * Configurations for available Redshift query engine storage types
21206
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginestorageconfiguration.html}
21207
+ */
21208
+ export type BedrockKnowledgeBaseRedshiftQueryEngineStorageConfiguration = {
21209
+ /**
21210
+ * Configurations for Redshift query engine AWS Data Catalog backed storage
21211
+ */
21212
+ AwsDataCatalogConfiguration?: BedrockKnowledgeBaseRedshiftQueryEngineAwsDataCatalogStorageConfiguration;
21213
+ /**
21214
+ * Configurations for Redshift query engine Redshift backed storage
21215
+ */
21216
+ RedshiftConfiguration?: BedrockKnowledgeBaseRedshiftQueryEngineRedshiftStorageConfiguration;
21217
+ /**
21218
+ * Redshift query engine storage type
21219
+ */
21220
+ Type: BedrockKnowledgeBaseRedshiftQueryEngineStorageType;
21221
+ };
21222
+ /**
21223
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineStorageType`.
21224
+ * Redshift query engine storage type
21225
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginestoragetype.html}
21226
+ */
21227
+ export type BedrockKnowledgeBaseRedshiftQueryEngineStorageType = "REDSHIFT" | "AWS_DATA_CATALOG";
21228
+ /**
21229
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftQueryEngineType`.
21230
+ * Redshift query engine type
21231
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftqueryenginetype.html}
21232
+ */
21233
+ export type BedrockKnowledgeBaseRedshiftQueryEngineType = "SERVERLESS" | "PROVISIONED";
21234
+ /**
21235
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessAuthConfiguration`.
21236
+ * Configurations for Redshift query engine serverless auth setup
21237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessauthconfiguration.html}
21238
+ */
21239
+ export type BedrockKnowledgeBaseRedshiftServerlessAuthConfiguration = {
21240
+ /**
21241
+ * Serverless Redshift auth type
21242
+ */
21243
+ Type: BedrockKnowledgeBaseRedshiftServerlessAuthType;
21244
+ /**
21245
+ * Arn of a SecretsManager Secret
21246
+ * @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
21247
+ */
21248
+ UsernamePasswordSecretArn?: string;
21249
+ };
21250
+ /**
21251
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessAuthType`.
21252
+ * Serverless Redshift auth type
21253
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessauthtype.html}
21254
+ */
21255
+ export type BedrockKnowledgeBaseRedshiftServerlessAuthType = "IAM" | "USERNAME_PASSWORD";
21256
+ /**
21257
+ * Type definition for `AWS::Bedrock::KnowledgeBase.RedshiftServerlessConfiguration`.
21258
+ * Configurations for serverless Redshift query engine
21259
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-redshiftserverlessconfiguration.html}
21260
+ */
21261
+ export type BedrockKnowledgeBaseRedshiftServerlessConfiguration = {
21262
+ /**
21263
+ * Configurations for Redshift query engine serverless auth setup
21264
+ */
21265
+ AuthConfiguration: BedrockKnowledgeBaseRedshiftServerlessAuthConfiguration;
21266
+ /**
21267
+ * Workgroup arn
21268
+ * @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})$`
21269
+ */
21270
+ WorkgroupArn: string;
21271
+ };
20976
21272
  /**
20977
21273
  * Type definition for `AWS::Bedrock::KnowledgeBase.S3Location`.
20978
21274
  * An Amazon S3 location.
@@ -20987,6 +21283,21 @@ export type BedrockKnowledgeBaseS3Location = {
20987
21283
  */
20988
21284
  URI: string;
20989
21285
  };
21286
+ /**
21287
+ * Type definition for `AWS::Bedrock::KnowledgeBase.SqlKnowledgeBaseConfiguration`.
21288
+ * Configurations for a SQL knowledge base
21289
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-sqlknowledgebaseconfiguration.html}
21290
+ */
21291
+ export type BedrockKnowledgeBaseSqlKnowledgeBaseConfiguration = {
21292
+ /**
21293
+ * Configurations for a Redshift knowledge base
21294
+ */
21295
+ RedshiftConfiguration?: BedrockKnowledgeBaseRedshiftConfiguration;
21296
+ /**
21297
+ * SQL query engine type
21298
+ */
21299
+ Type: BedrockKnowledgeBaseQueryEngineType;
21300
+ };
20990
21301
  /**
20991
21302
  * Type definition for `AWS::Bedrock::KnowledgeBase.StorageConfiguration`.
20992
21303
  * The vector store service in which the knowledge base is stored.
@@ -21575,6 +21886,19 @@ export type BedrockPromptVersionAttributes = {
21575
21886
  * @maxLength `1`
21576
21887
  */
21577
21888
  Variants: {
21889
+ GenAiResource: {
21890
+ /**
21891
+ * Target Agent to invoke with Prompt
21892
+ */
21893
+ Agent: {
21894
+ /**
21895
+ * Arn representation of the Agent Alias.
21896
+ * @maxLength `2048`
21897
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
21898
+ */
21899
+ AgentIdentifier: string;
21900
+ };
21901
+ };
21578
21902
  InferenceConfiguration: {
21579
21903
  /**
21580
21904
  * Prompt model inference configuration
@@ -21618,31 +21942,10 @@ export type BedrockPromptVersionAttributes = {
21618
21942
  * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
21619
21943
  */
21620
21944
  Name: string;
21621
- TemplateConfiguration: {
21622
- /**
21623
- * Configuration for text prompt template
21624
- */
21625
- Text: {
21626
- /**
21627
- * List of input variables
21628
- * @minLength `0`
21629
- * @maxLength `5`
21630
- */
21631
- InputVariables: {
21632
- /**
21633
- * Name for an input variable
21634
- * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
21635
- */
21636
- Name: string;
21637
- }[];
21638
- /**
21639
- * Prompt content for String prompt template
21640
- * @minLength `1`
21641
- * @maxLength `200000`
21642
- */
21643
- Text: string;
21644
- };
21645
- };
21945
+ /**
21946
+ * Prompt template configuration
21947
+ */
21948
+ TemplateConfiguration: BedrockPromptVersionPromptTemplateConfiguration;
21646
21949
  /**
21647
21950
  * Prompt template type
21648
21951
  */
@@ -21656,6 +21959,101 @@ export type BedrockPromptVersionAttributes = {
21656
21959
  */
21657
21960
  Version: string;
21658
21961
  };
21962
+ /**
21963
+ * Type definition for `AWS::Bedrock::PromptVersion.AnyToolChoice`.
21964
+ * Any Tool choice
21965
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-anytoolchoice.html}
21966
+ */
21967
+ export type BedrockPromptVersionAnyToolChoice = Record<string, any>;
21968
+ /**
21969
+ * Type definition for `AWS::Bedrock::PromptVersion.AutoToolChoice`.
21970
+ * Auto Tool choice
21971
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-autotoolchoice.html}
21972
+ */
21973
+ export type BedrockPromptVersionAutoToolChoice = Record<string, any>;
21974
+ /**
21975
+ * Type definition for `AWS::Bedrock::PromptVersion.ChatPromptTemplateConfiguration`.
21976
+ * Configuration for chat prompt template
21977
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-chatprompttemplateconfiguration.html}
21978
+ */
21979
+ export type BedrockPromptVersionChatPromptTemplateConfiguration = {
21980
+ /**
21981
+ * List of input variables
21982
+ * @minLength `0`
21983
+ * @maxLength `5`
21984
+ */
21985
+ InputVariables?: BedrockPromptVersionPromptInputVariable[];
21986
+ /**
21987
+ * List of messages for chat prompt template
21988
+ * @minLength `0`
21989
+ */
21990
+ Messages: BedrockPromptVersionMessage[];
21991
+ /**
21992
+ * Configuration for chat prompt template
21993
+ * @minLength `0`
21994
+ */
21995
+ System?: BedrockPromptVersionSystemContentBlock[];
21996
+ /**
21997
+ * Tool configuration
21998
+ */
21999
+ ToolConfiguration?: BedrockPromptVersionToolConfiguration;
22000
+ };
22001
+ /**
22002
+ * Type definition for `AWS::Bedrock::PromptVersion.ContentBlock`.
22003
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-contentblock.html}
22004
+ */
22005
+ export type BedrockPromptVersionContentBlock = {
22006
+ /**
22007
+ * Configuration for chat prompt template
22008
+ * @minLength `1`
22009
+ */
22010
+ Text: string;
22011
+ };
22012
+ /**
22013
+ * Type definition for `AWS::Bedrock::PromptVersion.ConversationRole`.
22014
+ * Conversation roles for the chat prompt
22015
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-conversationrole.html}
22016
+ */
22017
+ export type BedrockPromptVersionConversationRole = "user" | "assistant";
22018
+ /**
22019
+ * Type definition for `AWS::Bedrock::PromptVersion.Message`.
22020
+ * Chat prompt Message
22021
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-message.html}
22022
+ */
22023
+ export type BedrockPromptVersionMessage = {
22024
+ /**
22025
+ * List of Content Blocks
22026
+ * @minLength `1`
22027
+ */
22028
+ Content: BedrockPromptVersionContentBlock[];
22029
+ /**
22030
+ * Conversation roles for the chat prompt
22031
+ */
22032
+ Role: BedrockPromptVersionConversationRole;
22033
+ };
22034
+ /**
22035
+ * Type definition for `AWS::Bedrock::PromptVersion.PromptAgentResource`.
22036
+ * Target Agent to invoke with Prompt
22037
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptagentresource.html}
22038
+ */
22039
+ export type BedrockPromptVersionPromptAgentResource = {
22040
+ /**
22041
+ * Arn representation of the Agent Alias.
22042
+ * @maxLength `2048`
22043
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
22044
+ */
22045
+ AgentIdentifier: string;
22046
+ };
22047
+ /**
22048
+ * Type definition for `AWS::Bedrock::PromptVersion.PromptGenAiResource`.
22049
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptgenairesource.html}
22050
+ */
22051
+ export type BedrockPromptVersionPromptGenAiResource = {
22052
+ /**
22053
+ * Target Agent to invoke with Prompt
22054
+ */
22055
+ Agent: BedrockPromptVersionPromptAgentResource;
22056
+ };
21659
22057
  /**
21660
22058
  * Type definition for `AWS::Bedrock::PromptVersion.PromptInferenceConfiguration`.
21661
22059
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptinferenceconfiguration.html}
@@ -21711,6 +22109,7 @@ export type BedrockPromptVersionPromptModelInferenceConfiguration = {
21711
22109
  };
21712
22110
  /**
21713
22111
  * Type definition for `AWS::Bedrock::PromptVersion.PromptTemplateConfiguration`.
22112
+ * Prompt template configuration
21714
22113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-prompttemplateconfiguration.html}
21715
22114
  */
21716
22115
  export type BedrockPromptVersionPromptTemplateConfiguration = {
@@ -21718,19 +22117,25 @@ export type BedrockPromptVersionPromptTemplateConfiguration = {
21718
22117
  * Configuration for text prompt template
21719
22118
  */
21720
22119
  Text: BedrockPromptVersionTextPromptTemplateConfiguration;
22120
+ } | {
22121
+ /**
22122
+ * Configuration for chat prompt template
22123
+ */
22124
+ Chat: BedrockPromptVersionChatPromptTemplateConfiguration;
21721
22125
  };
21722
22126
  /**
21723
22127
  * Type definition for `AWS::Bedrock::PromptVersion.PromptTemplateType`.
21724
22128
  * Prompt template type
21725
22129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-prompttemplatetype.html}
21726
22130
  */
21727
- export type BedrockPromptVersionPromptTemplateType = "TEXT";
22131
+ export type BedrockPromptVersionPromptTemplateType = "TEXT" | "CHAT";
21728
22132
  /**
21729
22133
  * Type definition for `AWS::Bedrock::PromptVersion.PromptVariant`.
21730
22134
  * Prompt variant
21731
22135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptvariant.html}
21732
22136
  */
21733
22137
  export type BedrockPromptVersionPromptVariant = {
22138
+ GenAiResource?: BedrockPromptVersionPromptGenAiResource;
21734
22139
  InferenceConfiguration?: BedrockPromptVersionPromptInferenceConfiguration;
21735
22140
  /**
21736
22141
  * 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.
@@ -21744,12 +22149,40 @@ export type BedrockPromptVersionPromptVariant = {
21744
22149
  * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
21745
22150
  */
21746
22151
  Name: string;
22152
+ /**
22153
+ * Prompt template configuration
22154
+ */
21747
22155
  TemplateConfiguration: BedrockPromptVersionPromptTemplateConfiguration;
21748
22156
  /**
21749
22157
  * Prompt template type
21750
22158
  */
21751
22159
  TemplateType: BedrockPromptVersionPromptTemplateType;
21752
22160
  };
22161
+ /**
22162
+ * Type definition for `AWS::Bedrock::PromptVersion.SpecificToolChoice`.
22163
+ * Specific Tool choice
22164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-specifictoolchoice.html}
22165
+ */
22166
+ export type BedrockPromptVersionSpecificToolChoice = {
22167
+ /**
22168
+ * Tool name
22169
+ * @minLength `1`
22170
+ * @maxLength `64`
22171
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
22172
+ */
22173
+ Name: string;
22174
+ };
22175
+ /**
22176
+ * Type definition for `AWS::Bedrock::PromptVersion.SystemContentBlock`.
22177
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-systemcontentblock.html}
22178
+ */
22179
+ export type BedrockPromptVersionSystemContentBlock = {
22180
+ /**
22181
+ * Configuration for chat prompt template
22182
+ * @minLength `1`
22183
+ */
22184
+ Text: string;
22185
+ };
21753
22186
  /**
21754
22187
  * Type definition for `AWS::Bedrock::PromptVersion.TagsMap`.
21755
22188
  * A map of tag keys and values
@@ -21775,6 +22208,83 @@ export type BedrockPromptVersionTextPromptTemplateConfiguration = {
21775
22208
  */
21776
22209
  Text: string;
21777
22210
  };
22211
+ /**
22212
+ * Type definition for `AWS::Bedrock::PromptVersion.Tool`.
22213
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-tool.html}
22214
+ */
22215
+ export type BedrockPromptVersionTool = {
22216
+ /**
22217
+ * Tool specification
22218
+ */
22219
+ ToolSpec: BedrockPromptVersionToolSpecification;
22220
+ };
22221
+ /**
22222
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolChoice`.
22223
+ * Tool choice
22224
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolchoice.html}
22225
+ */
22226
+ export type BedrockPromptVersionToolChoice = {
22227
+ /**
22228
+ * Auto Tool choice
22229
+ */
22230
+ Auto: BedrockPromptVersionAutoToolChoice;
22231
+ } | {
22232
+ /**
22233
+ * Any Tool choice
22234
+ */
22235
+ Any: BedrockPromptVersionAnyToolChoice;
22236
+ } | {
22237
+ /**
22238
+ * Specific Tool choice
22239
+ */
22240
+ Tool: BedrockPromptVersionSpecificToolChoice;
22241
+ };
22242
+ /**
22243
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolConfiguration`.
22244
+ * Tool configuration
22245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolconfiguration.html}
22246
+ */
22247
+ export type BedrockPromptVersionToolConfiguration = {
22248
+ /**
22249
+ * Tool choice
22250
+ */
22251
+ ToolChoice?: BedrockPromptVersionToolChoice;
22252
+ /**
22253
+ * List of Tools
22254
+ * @minLength `1`
22255
+ */
22256
+ Tools: BedrockPromptVersionTool[];
22257
+ };
22258
+ /**
22259
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolInputSchema`.
22260
+ * Tool input schema json
22261
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolinputschema.html}
22262
+ */
22263
+ export type BedrockPromptVersionToolInputSchema = {
22264
+ Json: Record<string, any>;
22265
+ };
22266
+ /**
22267
+ * Type definition for `AWS::Bedrock::PromptVersion.ToolSpecification`.
22268
+ * Tool specification
22269
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-toolspecification.html}
22270
+ */
22271
+ export type BedrockPromptVersionToolSpecification = {
22272
+ /**
22273
+ * @minLength `1`
22274
+ */
22275
+ Description?: string;
22276
+ /**
22277
+ * Tool input schema json
22278
+ */
22279
+ InputSchema: BedrockPromptVersionToolInputSchema;
22280
+ /**
22281
+ * Tool name
22282
+ * @minLength `1`
22283
+ * @maxLength `64`
22284
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
22285
+ */
22286
+ Name: string;
22287
+ };
21778
22288
  /**
21779
22289
  * Resource type definition for `AWS::BillingConductor::BillingGroup`.
21780
22290
  * A billing group is a set of linked account which belong to the same end customer. It can be seen as a virtual consolidated billing family.
@@ -29789,7 +30299,7 @@ export type CodeBuildFleetProps = {
29789
30299
  BaseCapacity?: number;
29790
30300
  ComputeConfiguration?: CodeBuildFleetComputeConfiguration;
29791
30301
  ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_XLARGE" | "BUILD_GENERAL1_2XLARGE" | "ATTRIBUTE_BASED_COMPUTE";
29792
- EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM";
30302
+ EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER" | "MAC_ARM" | "LINUX_EC2" | "ARM_EC2" | "WINDOWS_EC2";
29793
30303
  FleetProxyConfiguration?: CodeBuildFleetProxyConfiguration;
29794
30304
  /**
29795
30305
  * @pattern `^(?:arn:)[a-zA-Z+-=,._:/@]+$`
@@ -35332,7 +35842,7 @@ export type ConnectRoutingProfileBehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY" | "
35332
35842
  * The channels that agents can handle in the Contact Control Panel (CCP).
35333
35843
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-channel.html}
35334
35844
  */
35335
- export type ConnectRoutingProfileChannel = "VOICE" | "CHAT" | "TASK";
35845
+ export type ConnectRoutingProfileChannel = "VOICE" | "CHAT" | "TASK" | "EMAIL";
35336
35846
  /**
35337
35847
  * Type definition for `AWS::Connect::RoutingProfile.CrossChannelBehavior`.
35338
35848
  * 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.
@@ -60890,9 +61400,9 @@ export type ElastiCacheUserTag = {
60890
61400
  */
60891
61401
  export type ElastiCacheUserGroupProps = {
60892
61402
  /**
60893
- * Must be redis.
61403
+ * The target cache engine for the user group.
60894
61404
  */
60895
- Engine: "redis";
61405
+ Engine: "redis" | "valkey";
60896
61406
  /**
60897
61407
  * An array of key-value pairs to apply to this user.
60898
61408
  * @maxLength `50`
@@ -61637,6 +62147,27 @@ export type ElasticLoadBalancingV2ListenerListenerAttribute = {
61637
62147
  * The name of the attribute.
61638
62148
  The following attribute is supported by Network Load Balancers, and Gateway Load Balancers.
61639
62149
  + ``tcp.idle_timeout.seconds`` - The tcp idle timeout value, in seconds. The valid range is 60-6000 seconds. The default is 350 seconds.
62150
+
62151
+ The following attributes are only supported by Application Load Balancers.
62152
+ + ``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.
62153
+ + ``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.
62154
+ + ``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.
62155
+ + ``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.
62156
+ + ``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.
62157
+ + ``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.
62158
+ + ``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.
62159
+ + ``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.
62160
+ + ``routing.http.response.server.enabled`` - Enables you to allow or remove the HTTP response server header.
62161
+ + ``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.
62162
+ + ``routing.http.response.access_control_allow_origin.header_value`` - Specifies which origins are allowed to access the server.
62163
+ + ``routing.http.response.access_control_allow_methods.header_value`` - Returns which HTTP methods are allowed when accessing the server from a different origin.
62164
+ + ``routing.http.response.access_control_allow_headers.header_value`` - Specifies which headers can be used during the request.
62165
+ + ``routing.http.response.access_control_allow_credentials.header_value`` - Indicates whether the browser should include credentials such as cookies or authentication when making requests.
62166
+ + ``routing.http.response.access_control_expose_headers.header_value`` - Returns which headers the browser can expose to the requesting client.
62167
+ + ``routing.http.response.access_control_max_age.header_value`` - Specifies how long the results of a preflight request can be cached, in seconds.
62168
+ + ``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.
62169
+ + ``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.
62170
+ + ``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*.
61640
62171
  */
61641
62172
  Key?: string;
61642
62173
  /**
@@ -62215,6 +62746,9 @@ export type ElasticLoadBalancingV2LoadBalancerProps = {
62215
62746
  * The load balancer attributes.
62216
62747
  */
62217
62748
  LoadBalancerAttributes?: ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute[];
62749
+ /**
62750
+ * The minimum capacity for a load balancer.
62751
+ */
62218
62752
  MinimumLoadBalancerCapacity?: ElasticLoadBalancingV2LoadBalancerMinimumLoadBalancerCapacity;
62219
62753
  /**
62220
62754
  * 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-".
@@ -62286,6 +62820,7 @@ export type ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute = {
62286
62820
  + ``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.
62287
62821
  + ``access_logs.s3.prefix`` - The prefix for the location in the S3 bucket for the access logs.
62288
62822
  + ``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.
62823
+ + ``zonal_shift.config.enabled`` - Indicates whether zonal shift is enabled. The possible values are ``true`` and ``false``. The default is ``false``.
62289
62824
 
62290
62825
  The following attributes are supported by only Application Load Balancers:
62291
62826
  + ``idle_timeout.timeout_seconds`` - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.
@@ -62308,7 +62843,6 @@ export type ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute = {
62308
62843
 
62309
62844
  The following attributes are supported by only Network Load Balancers:
62310
62845
  + ``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.
62311
- + ``zonal_shift.config.enabled`` - Indicates whether zonal shift is enabled. The possible values are ``true`` and ``false``. The default is ``false``.
62312
62846
  */
62313
62847
  Key?: string;
62314
62848
  /**
@@ -62318,9 +62852,13 @@ export type ElasticLoadBalancingV2LoadBalancerLoadBalancerAttribute = {
62318
62852
  };
62319
62853
  /**
62320
62854
  * Type definition for `AWS::ElasticLoadBalancingV2::LoadBalancer.MinimumLoadBalancerCapacity`.
62855
+ * The minimum capacity for a load balancer.
62321
62856
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-minimumloadbalancercapacity.html}
62322
62857
  */
62323
62858
  export type ElasticLoadBalancingV2LoadBalancerMinimumLoadBalancerCapacity = {
62859
+ /**
62860
+ * The number of capacity units.
62861
+ */
62324
62862
  CapacityUnits: number;
62325
62863
  };
62326
62864
  /**
@@ -64101,6 +64639,10 @@ export type EMRServerlessApplicationMonitoringConfiguration = {
64101
64639
  * Managed log persistence configurations for a JobRun.
64102
64640
  */
64103
64641
  ManagedPersistenceMonitoringConfiguration?: EMRServerlessApplicationManagedPersistenceMonitoringConfiguration;
64642
+ /**
64643
+ * Prometheus monitoring configurations for a JobRun.
64644
+ */
64645
+ PrometheusMonitoringConfiguration?: EMRServerlessApplicationPrometheusMonitoringConfiguration;
64104
64646
  /**
64105
64647
  * S3 monitoring configurations for a JobRun.
64106
64648
  */
@@ -64124,6 +64666,19 @@ export type EMRServerlessApplicationNetworkConfiguration = {
64124
64666
  */
64125
64667
  SubnetIds?: string[];
64126
64668
  };
64669
+ /**
64670
+ * Type definition for `AWS::EMRServerless::Application.PrometheusMonitoringConfiguration`.
64671
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-prometheusmonitoringconfiguration.html}
64672
+ */
64673
+ export type EMRServerlessApplicationPrometheusMonitoringConfiguration = {
64674
+ /**
64675
+ * The remote write URL in the Amazon Managed Service for Prometheus workspace to send metrics to.
64676
+ * @minLength `1`
64677
+ * @maxLength `10280`
64678
+ * @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$`
64679
+ */
64680
+ RemoteWriteUrl?: string;
64681
+ };
64127
64682
  /**
64128
64683
  * Type definition for `AWS::EMRServerless::Application.S3MonitoringConfiguration`.
64129
64684
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-s3monitoringconfiguration.html}
@@ -80082,14 +80637,14 @@ export type IoTThingTypePropagatingAttribute = {
80082
80637
  */
80083
80638
  export type IoTThingTypeTag = {
80084
80639
  /**
80085
- * 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 -.
80640
+ * Tag key (1-128 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
80086
80641
  * @minLength `1`
80087
80642
  * @maxLength `128`
80088
80643
  * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
80089
80644
  */
80090
80645
  Key: string;
80091
80646
  /**
80092
- * 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 -.
80647
+ * Tag value (1-256 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
80093
80648
  * @minLength `1`
80094
80649
  * @maxLength `256`
80095
80650
  */
@@ -113608,6 +114163,187 @@ export type NimbleStudioStudioComponentStudioComponentInitializationScript = {
113608
114163
  RunContext?: string;
113609
114164
  Script?: string;
113610
114165
  };
114166
+ /**
114167
+ * Definition of AWS::Notifications::ChannelAssociation Resource Type
114168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-channelassociation.html}
114169
+ */
114170
+ export type NotificationsChannelAssociationProps = {
114171
+ /**
114172
+ * ARN identifier of the channel.
114173
+ Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
114174
+ * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
114175
+ */
114176
+ Arn: string;
114177
+ /**
114178
+ * ARN identifier of the NotificationConfiguration.
114179
+ Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
114180
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration\/[a-z0-9]{27}$`
114181
+ */
114182
+ NotificationConfigurationArn: string;
114183
+ };
114184
+ /**
114185
+ * Definition of AWS::Notifications::EventRule Resource Type
114186
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html}
114187
+ */
114188
+ export type NotificationsEventRuleProps = {
114189
+ /**
114190
+ * @minLength `0`
114191
+ * @maxLength `4096`
114192
+ */
114193
+ EventPattern?: string;
114194
+ /**
114195
+ * @minLength `1`
114196
+ * @maxLength `128`
114197
+ * @pattern `^([a-zA-Z0-9 \-\(\)])+$`
114198
+ */
114199
+ EventType: string;
114200
+ /**
114201
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
114202
+ */
114203
+ NotificationConfigurationArn: string;
114204
+ /**
114205
+ * @minLength `1`
114206
+ */
114207
+ Regions: string[];
114208
+ /**
114209
+ * @minLength `1`
114210
+ * @maxLength `36`
114211
+ * @pattern `^aws.([a-z0-9\-])+$`
114212
+ */
114213
+ Source: string;
114214
+ };
114215
+ /**
114216
+ * Attribute type definition for `AWS::Notifications::EventRule`.
114217
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#aws-resource-notifications-eventrule-return-values}
114218
+ */
114219
+ export type NotificationsEventRuleAttributes = {
114220
+ /**
114221
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}/rule/[a-z0-9]{27}$`
114222
+ */
114223
+ Arn: string;
114224
+ CreationTime: string;
114225
+ ManagedRules: string[];
114226
+ StatusSummaryByRegion: Record<string, {
114227
+ Reason: string;
114228
+ Status: NotificationsEventRuleEventRuleStatus;
114229
+ }>;
114230
+ };
114231
+ /**
114232
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatus`.
114233
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatus.html}
114234
+ */
114235
+ export type NotificationsEventRuleEventRuleStatus = "ACTIVE" | "INACTIVE" | "CREATING" | "UPDATING" | "DELETING";
114236
+ /**
114237
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatusSummary`.
114238
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatussummary.html}
114239
+ */
114240
+ export type NotificationsEventRuleEventRuleStatusSummary = {
114241
+ Reason: string;
114242
+ Status: NotificationsEventRuleEventRuleStatus;
114243
+ };
114244
+ /**
114245
+ * Type definition for `AWS::Notifications::EventRule.StatusSummaryByRegion`.
114246
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-statussummarybyregion.html}
114247
+ */
114248
+ export type NotificationsEventRuleStatusSummaryByRegion = Record<string, NotificationsEventRuleEventRuleStatusSummary>;
114249
+ /**
114250
+ * Definition of AWS::Notifications::NotificationConfiguration Resource Type
114251
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html}
114252
+ */
114253
+ export type NotificationsNotificationConfigurationProps = {
114254
+ AggregationDuration?: NotificationsNotificationConfigurationAggregationDuration;
114255
+ /**
114256
+ * @minLength `0`
114257
+ * @maxLength `256`
114258
+ * @pattern `^[^\u0001-\u001F\u007F-\u009F]*$`
114259
+ */
114260
+ Description: string;
114261
+ /**
114262
+ * @minLength `1`
114263
+ * @maxLength `64`
114264
+ * @pattern `^[A-Za-z0-9_\-]+$`
114265
+ */
114266
+ Name: string;
114267
+ /**
114268
+ * A list of tags that are attached to the role.
114269
+ */
114270
+ Tags?: NotificationsNotificationConfigurationTag[];
114271
+ };
114272
+ /**
114273
+ * Attribute type definition for `AWS::Notifications::NotificationConfiguration`.
114274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html#aws-resource-notifications-notificationconfiguration-return-values}
114275
+ */
114276
+ export type NotificationsNotificationConfigurationAttributes = {
114277
+ /**
114278
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
114279
+ */
114280
+ Arn: string;
114281
+ CreationTime: string;
114282
+ Status: NotificationsNotificationConfigurationNotificationConfigurationStatus;
114283
+ };
114284
+ /**
114285
+ * Type definition for `AWS::Notifications::NotificationConfiguration.AggregationDuration`.
114286
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-aggregationduration.html}
114287
+ */
114288
+ export type NotificationsNotificationConfigurationAggregationDuration = "LONG" | "SHORT" | "NONE";
114289
+ /**
114290
+ * Type definition for `AWS::Notifications::NotificationConfiguration.NotificationConfigurationStatus`.
114291
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-notificationconfigurationstatus.html}
114292
+ */
114293
+ export type NotificationsNotificationConfigurationNotificationConfigurationStatus = "ACTIVE" | "PARTIALLY_ACTIVE" | "INACTIVE" | "DELETING";
114294
+ /**
114295
+ * Type definition for `AWS::Notifications::NotificationConfiguration.Tag`.
114296
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-tag.html}
114297
+ */
114298
+ export type NotificationsNotificationConfigurationTag = {
114299
+ /**
114300
+ * @minLength `1`
114301
+ * @maxLength `128`
114302
+ */
114303
+ Key: string;
114304
+ /**
114305
+ * @minLength `0`
114306
+ * @maxLength `256`
114307
+ */
114308
+ Value: string;
114309
+ };
114310
+ /**
114311
+ * Definition of AWS::Notifications::NotificationHub Resource Type
114312
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html}
114313
+ */
114314
+ export type NotificationsNotificationHubProps = {
114315
+ /**
114316
+ * Region that NotificationHub is present in.
114317
+ * @minLength `2`
114318
+ * @maxLength `25`
114319
+ * @pattern `^([a-z]{1,2})-([a-z]{1,15}-)+([0-9])$`
114320
+ */
114321
+ Region: string;
114322
+ };
114323
+ /**
114324
+ * Attribute type definition for `AWS::Notifications::NotificationHub`.
114325
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html#aws-resource-notifications-notificationhub-return-values}
114326
+ */
114327
+ export type NotificationsNotificationHubAttributes = {
114328
+ CreationTime: string;
114329
+ NotificationHubStatusSummary: {
114330
+ NotificationHubStatus: NotificationsNotificationHubNotificationHubStatus;
114331
+ NotificationHubStatusReason: string;
114332
+ };
114333
+ };
114334
+ /**
114335
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatus`.
114336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatus.html}
114337
+ */
114338
+ export type NotificationsNotificationHubNotificationHubStatus = "ACTIVE" | "REGISTERING" | "DEREGISTERING" | "INACTIVE";
114339
+ /**
114340
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatusSummary`.
114341
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatussummary.html}
114342
+ */
114343
+ export type NotificationsNotificationHubNotificationHubStatusSummary = {
114344
+ NotificationHubStatus: NotificationsNotificationHubNotificationHubStatus;
114345
+ NotificationHubStatusReason: string;
114346
+ };
113611
114347
  /**
113612
114348
  * Definition of AWS::NotificationsContacts::EmailContact Resource Type
113613
114349
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html}
@@ -163202,7 +163938,7 @@ export type SageMakerDomainLifecycleManagement = "ENABLED" | "DISABLED";
163202
163938
  * Type definition for `AWS::SageMaker::Domain.MlTools`.
163203
163939
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-mltools.html}
163204
163940
  */
163205
- export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
163941
+ export type SageMakerDomainMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard" | "PerformanceEvaluation";
163206
163942
  /**
163207
163943
  * Type definition for `AWS::SageMaker::Domain.ResourceSpec`.
163208
163944
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-resourcespec.html}
@@ -169678,7 +170414,7 @@ export type SageMakerUserProfileLifecycleManagement = "ENABLED" | "DISABLED";
169678
170414
  * Type definition for `AWS::SageMaker::UserProfile.MlTools`.
169679
170415
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-mltools.html}
169680
170416
  */
169681
- export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard";
170417
+ export type SageMakerUserProfileMlTools = "DataWrangler" | "FeatureStore" | "EmrClusters" | "AutoMl" | "Experiments" | "Training" | "ModelEvaluation" | "Pipelines" | "Models" | "JumpStart" | "InferenceRecommender" | "Endpoints" | "Projects" | "InferenceOptimization" | "HyperPodClusters" | "Comet" | "DeepchecksLLMEvaluation" | "Fiddler" | "LakeraGuard" | "PerformanceEvaluation";
169682
170418
  /**
169683
170419
  * Type definition for `AWS::SageMaker::UserProfile.ResourceSpec`.
169684
170420
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html}
@@ -175985,6 +176721,7 @@ export type SNSTopicProps = {
175985
176721
  * 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.
175986
176722
  */
175987
176723
  DisplayName?: string;
176724
+ FifoThroughputScope?: string;
175988
176725
  /**
175989
176726
  * Set to true to create a FIFO topic.
175990
176727
  */
@@ -189728,6 +190465,10 @@ export interface ResourceTypes {
189728
190465
  "AWS::NimbleStudio::StreamingImage": NimbleStudioStreamingImageProps;
189729
190466
  "AWS::NimbleStudio::Studio": NimbleStudioStudioProps;
189730
190467
  "AWS::NimbleStudio::StudioComponent": NimbleStudioStudioComponentProps;
190468
+ "AWS::Notifications::ChannelAssociation": NotificationsChannelAssociationProps;
190469
+ "AWS::Notifications::EventRule": NotificationsEventRuleProps;
190470
+ "AWS::Notifications::NotificationConfiguration": NotificationsNotificationConfigurationProps;
190471
+ "AWS::Notifications::NotificationHub": NotificationsNotificationHubProps;
189731
190472
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactProps;
189732
190473
  "AWS::Oam::Link": OamLinkProps;
189733
190474
  "AWS::Oam::Sink": OamSinkProps;
@@ -190991,6 +191732,9 @@ export interface AttributeTypes {
190991
191732
  "AWS::NimbleStudio::StreamingImage": NimbleStudioStreamingImageAttributes;
190992
191733
  "AWS::NimbleStudio::Studio": NimbleStudioStudioAttributes;
190993
191734
  "AWS::NimbleStudio::StudioComponent": NimbleStudioStudioComponentAttributes;
191735
+ "AWS::Notifications::EventRule": NotificationsEventRuleAttributes;
191736
+ "AWS::Notifications::NotificationConfiguration": NotificationsNotificationConfigurationAttributes;
191737
+ "AWS::Notifications::NotificationHub": NotificationsNotificationHubAttributes;
190994
191738
  "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactAttributes;
190995
191739
  "AWS::Oam::Link": OamLinkAttributes;
190996
191740
  "AWS::Oam::Sink": OamSinkAttributes;
@@ -192316,6 +193060,10 @@ export declare const ResourceType: {
192316
193060
  readonly NimbleStudioStreamingImage: "AWS::NimbleStudio::StreamingImage";
192317
193061
  readonly NimbleStudioStudio: "AWS::NimbleStudio::Studio";
192318
193062
  readonly NimbleStudioStudioComponent: "AWS::NimbleStudio::StudioComponent";
193063
+ readonly NotificationsChannelAssociation: "AWS::Notifications::ChannelAssociation";
193064
+ readonly NotificationsEventRule: "AWS::Notifications::EventRule";
193065
+ readonly NotificationsNotificationConfiguration: "AWS::Notifications::NotificationConfiguration";
193066
+ readonly NotificationsNotificationHub: "AWS::Notifications::NotificationHub";
192319
193067
  readonly NotificationsContactsEmailContact: "AWS::NotificationsContacts::EmailContact";
192320
193068
  readonly OamLink: "AWS::Oam::Link";
192321
193069
  readonly OamSink: "AWS::Oam::Sink";