@awboost/cfntypes 0.100.92 → 0.100.94

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.
@@ -31355,6 +31666,10 @@ export type CodePipelinePipelinePipelineTriggerDeclaration = {
31355
31666
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-ruledeclaration.html}
31356
31667
  */
31357
31668
  export type CodePipelinePipelineRuleDeclaration = {
31669
+ /**
31670
+ * The shell commands to run with your compute action in CodePipeline.
31671
+ */
31672
+ Commands?: string[];
31358
31673
  /**
31359
31674
  * The rule's configuration. These are key-value pairs that specify input values for a rule.
31360
31675
  */
@@ -35328,7 +35643,7 @@ export type ConnectRoutingProfileBehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY" | "
35328
35643
  * The channels that agents can handle in the Contact Control Panel (CCP).
35329
35644
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-channel.html}
35330
35645
  */
35331
- export type ConnectRoutingProfileChannel = "VOICE" | "CHAT" | "TASK";
35646
+ export type ConnectRoutingProfileChannel = "VOICE" | "CHAT" | "TASK" | "EMAIL";
35332
35647
  /**
35333
35648
  * Type definition for `AWS::Connect::RoutingProfile.CrossChannelBehavior`.
35334
35649
  * 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.
@@ -60886,9 +61201,9 @@ export type ElastiCacheUserTag = {
60886
61201
  */
60887
61202
  export type ElastiCacheUserGroupProps = {
60888
61203
  /**
60889
- * Must be redis.
61204
+ * The target cache engine for the user group.
60890
61205
  */
60891
- Engine: "redis";
61206
+ Engine: "redis" | "valkey";
60892
61207
  /**
60893
61208
  * An array of key-value pairs to apply to this user.
60894
61209
  * @maxLength `50`
@@ -80078,14 +80393,14 @@ export type IoTThingTypePropagatingAttribute = {
80078
80393
  */
80079
80394
  export type IoTThingTypeTag = {
80080
80395
  /**
80081
- * 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 -.
80396
+ * Tag key (1-128 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
80082
80397
  * @minLength `1`
80083
80398
  * @maxLength `128`
80084
80399
  * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
80085
80400
  */
80086
80401
  Key: string;
80087
80402
  /**
80088
- * 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 -.
80403
+ * Tag value (1-256 chars). No 'aws:' prefix. Allows: [A-Za-z0-9 _.:/=+-]
80089
80404
  * @minLength `1`
80090
80405
  * @maxLength `256`
80091
80406
  */
@@ -113604,6 +113919,261 @@ export type NimbleStudioStudioComponentStudioComponentInitializationScript = {
113604
113919
  RunContext?: string;
113605
113920
  Script?: string;
113606
113921
  };
113922
+ /**
113923
+ * Definition of AWS::Notifications::ChannelAssociation Resource Type
113924
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-channelassociation.html}
113925
+ */
113926
+ export type NotificationsChannelAssociationProps = {
113927
+ /**
113928
+ * ARN identifier of the channel.
113929
+ Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
113930
+ * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
113931
+ */
113932
+ Arn: string;
113933
+ /**
113934
+ * ARN identifier of the NotificationConfiguration.
113935
+ Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
113936
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration\/[a-z0-9]{27}$`
113937
+ */
113938
+ NotificationConfigurationArn: string;
113939
+ };
113940
+ /**
113941
+ * Definition of AWS::Notifications::EventRule Resource Type
113942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html}
113943
+ */
113944
+ export type NotificationsEventRuleProps = {
113945
+ /**
113946
+ * @minLength `0`
113947
+ * @maxLength `4096`
113948
+ */
113949
+ EventPattern?: string;
113950
+ /**
113951
+ * @minLength `1`
113952
+ * @maxLength `128`
113953
+ * @pattern `^([a-zA-Z0-9 \-\(\)])+$`
113954
+ */
113955
+ EventType: string;
113956
+ /**
113957
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
113958
+ */
113959
+ NotificationConfigurationArn: string;
113960
+ /**
113961
+ * @minLength `1`
113962
+ */
113963
+ Regions: string[];
113964
+ /**
113965
+ * @minLength `1`
113966
+ * @maxLength `36`
113967
+ * @pattern `^aws.([a-z0-9\-])+$`
113968
+ */
113969
+ Source: string;
113970
+ };
113971
+ /**
113972
+ * Attribute type definition for `AWS::Notifications::EventRule`.
113973
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#aws-resource-notifications-eventrule-return-values}
113974
+ */
113975
+ export type NotificationsEventRuleAttributes = {
113976
+ /**
113977
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}/rule/[a-z0-9]{27}$`
113978
+ */
113979
+ Arn: string;
113980
+ CreationTime: string;
113981
+ ManagedRules: string[];
113982
+ StatusSummaryByRegion: Record<string, {
113983
+ Reason: string;
113984
+ Status: NotificationsEventRuleEventRuleStatus;
113985
+ }>;
113986
+ };
113987
+ /**
113988
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatus`.
113989
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatus.html}
113990
+ */
113991
+ export type NotificationsEventRuleEventRuleStatus = "ACTIVE" | "INACTIVE" | "CREATING" | "UPDATING" | "DELETING";
113992
+ /**
113993
+ * Type definition for `AWS::Notifications::EventRule.EventRuleStatusSummary`.
113994
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-eventrulestatussummary.html}
113995
+ */
113996
+ export type NotificationsEventRuleEventRuleStatusSummary = {
113997
+ Reason: string;
113998
+ Status: NotificationsEventRuleEventRuleStatus;
113999
+ };
114000
+ /**
114001
+ * Type definition for `AWS::Notifications::EventRule.StatusSummaryByRegion`.
114002
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-eventrule-statussummarybyregion.html}
114003
+ */
114004
+ export type NotificationsEventRuleStatusSummaryByRegion = Record<string, NotificationsEventRuleEventRuleStatusSummary>;
114005
+ /**
114006
+ * Definition of AWS::Notifications::NotificationConfiguration Resource Type
114007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html}
114008
+ */
114009
+ export type NotificationsNotificationConfigurationProps = {
114010
+ AggregationDuration?: NotificationsNotificationConfigurationAggregationDuration;
114011
+ /**
114012
+ * @minLength `0`
114013
+ * @maxLength `256`
114014
+ * @pattern `^[^\u0001-\u001F\u007F-\u009F]*$`
114015
+ */
114016
+ Description: string;
114017
+ /**
114018
+ * @minLength `1`
114019
+ * @maxLength `64`
114020
+ * @pattern `^[A-Za-z0-9_\-]+$`
114021
+ */
114022
+ Name: string;
114023
+ /**
114024
+ * A list of tags that are attached to the role.
114025
+ */
114026
+ Tags?: NotificationsNotificationConfigurationTag[];
114027
+ };
114028
+ /**
114029
+ * Attribute type definition for `AWS::Notifications::NotificationConfiguration`.
114030
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationconfiguration.html#aws-resource-notifications-notificationconfiguration-return-values}
114031
+ */
114032
+ export type NotificationsNotificationConfigurationAttributes = {
114033
+ /**
114034
+ * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
114035
+ */
114036
+ Arn: string;
114037
+ CreationTime: string;
114038
+ Status: NotificationsNotificationConfigurationNotificationConfigurationStatus;
114039
+ };
114040
+ /**
114041
+ * Type definition for `AWS::Notifications::NotificationConfiguration.AggregationDuration`.
114042
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-aggregationduration.html}
114043
+ */
114044
+ export type NotificationsNotificationConfigurationAggregationDuration = "LONG" | "SHORT" | "NONE";
114045
+ /**
114046
+ * Type definition for `AWS::Notifications::NotificationConfiguration.NotificationConfigurationStatus`.
114047
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-notificationconfigurationstatus.html}
114048
+ */
114049
+ export type NotificationsNotificationConfigurationNotificationConfigurationStatus = "ACTIVE" | "PARTIALLY_ACTIVE" | "INACTIVE" | "DELETING";
114050
+ /**
114051
+ * Type definition for `AWS::Notifications::NotificationConfiguration.Tag`.
114052
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationconfiguration-tag.html}
114053
+ */
114054
+ export type NotificationsNotificationConfigurationTag = {
114055
+ /**
114056
+ * @minLength `1`
114057
+ * @maxLength `128`
114058
+ */
114059
+ Key: string;
114060
+ /**
114061
+ * @minLength `0`
114062
+ * @maxLength `256`
114063
+ */
114064
+ Value: string;
114065
+ };
114066
+ /**
114067
+ * Definition of AWS::Notifications::NotificationHub Resource Type
114068
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html}
114069
+ */
114070
+ export type NotificationsNotificationHubProps = {
114071
+ /**
114072
+ * Region that NotificationHub is present in.
114073
+ * @minLength `2`
114074
+ * @maxLength `25`
114075
+ * @pattern `^([a-z]{1,2})-([a-z]{1,15}-)+([0-9])$`
114076
+ */
114077
+ Region: string;
114078
+ };
114079
+ /**
114080
+ * Attribute type definition for `AWS::Notifications::NotificationHub`.
114081
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-notificationhub.html#aws-resource-notifications-notificationhub-return-values}
114082
+ */
114083
+ export type NotificationsNotificationHubAttributes = {
114084
+ CreationTime: string;
114085
+ NotificationHubStatusSummary: {
114086
+ NotificationHubStatus: NotificationsNotificationHubNotificationHubStatus;
114087
+ NotificationHubStatusReason: string;
114088
+ };
114089
+ };
114090
+ /**
114091
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatus`.
114092
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatus.html}
114093
+ */
114094
+ export type NotificationsNotificationHubNotificationHubStatus = "ACTIVE" | "REGISTERING" | "DEREGISTERING" | "INACTIVE";
114095
+ /**
114096
+ * Type definition for `AWS::Notifications::NotificationHub.NotificationHubStatusSummary`.
114097
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-notificationhub-notificationhubstatussummary.html}
114098
+ */
114099
+ export type NotificationsNotificationHubNotificationHubStatusSummary = {
114100
+ NotificationHubStatus: NotificationsNotificationHubNotificationHubStatus;
114101
+ NotificationHubStatusReason: string;
114102
+ };
114103
+ /**
114104
+ * Definition of AWS::NotificationsContacts::EmailContact Resource Type
114105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html}
114106
+ */
114107
+ export type NotificationsContactsEmailContactProps = {
114108
+ /**
114109
+ * @minLength `6`
114110
+ * @maxLength `254`
114111
+ * @pattern `^(.+)@(.+)$`
114112
+ */
114113
+ EmailAddress: string;
114114
+ /**
114115
+ * @minLength `1`
114116
+ * @maxLength `64`
114117
+ * @pattern `[\w-.~]+`
114118
+ */
114119
+ Name: string;
114120
+ /**
114121
+ * A list of tags that are attached to the role.
114122
+ */
114123
+ Tags?: NotificationsContactsEmailContactTag[];
114124
+ };
114125
+ /**
114126
+ * Attribute type definition for `AWS::NotificationsContacts::EmailContact`.
114127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notificationscontacts-emailcontact.html#aws-resource-notificationscontacts-emailcontact-return-values}
114128
+ */
114129
+ export type NotificationsContactsEmailContactAttributes = {
114130
+ /**
114131
+ * @pattern `^arn:aws:notifications-contacts::[0-9]{12}:emailcontact/[a-z0-9]{27}$`
114132
+ */
114133
+ Arn: string;
114134
+ EmailContact: {
114135
+ /**
114136
+ * @minLength `6`
114137
+ * @maxLength `254`
114138
+ * @pattern `^(.+)@(.+)$`
114139
+ */
114140
+ Address: string;
114141
+ /**
114142
+ * @pattern `^arn:aws:notifications-contacts::[0-9]{12}:emailcontact/[a-z0-9]{27}$`
114143
+ */
114144
+ Arn: string;
114145
+ CreationTime: string;
114146
+ /**
114147
+ * @minLength `1`
114148
+ * @maxLength `64`
114149
+ * @pattern `[\w-.~]+`
114150
+ */
114151
+ Name: string;
114152
+ Status: NotificationsContactsEmailContactEmailContactStatus;
114153
+ UpdateTime: string;
114154
+ };
114155
+ };
114156
+ /**
114157
+ * Type definition for `AWS::NotificationsContacts::EmailContact.EmailContactStatus`.
114158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notificationscontacts-emailcontact-emailcontactstatus.html}
114159
+ */
114160
+ export type NotificationsContactsEmailContactEmailContactStatus = "inactive" | "active";
114161
+ /**
114162
+ * Type definition for `AWS::NotificationsContacts::EmailContact.Tag`.
114163
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notificationscontacts-emailcontact-tag.html}
114164
+ */
114165
+ export type NotificationsContactsEmailContactTag = {
114166
+ /**
114167
+ * @minLength `1`
114168
+ * @maxLength `128`
114169
+ */
114170
+ Key: string;
114171
+ /**
114172
+ * @minLength `0`
114173
+ * @maxLength `256`
114174
+ */
114175
+ Value: string;
114176
+ };
113607
114177
  /**
113608
114178
  * Definition of AWS::Oam::Link Resource Type
113609
114179
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-oam-link.html}
@@ -152904,14 +153474,19 @@ export type RDSDBSecurityGroupIngressAttributes = {
152904
153474
  Id: string;
152905
153475
  };
152906
153476
  /**
152907
- * The AWS::RDS::DBShardGroup resource creates an Amazon Aurora Limitless DB Shard Group.
153477
+ * Resource type definition for `AWS::RDS::DBShardGroup`.
153478
+ * Creates a new DB shard group for Aurora Limitless Database. You must enable Aurora Limitless Database to create a DB shard group.
153479
+ Valid for: Aurora DB clusters only
152908
153480
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html}
152909
153481
  */
152910
153482
  export type RDSDBShardGroupProps = {
152911
153483
  /**
152912
- * Specifies whether to create standby instances for the DB shard group.
152913
- * @min `0`
152914
- */
153484
+ * Specifies whether to create standby DB shard groups for the DB shard group. Valid values are the following:
153485
+ + 0 - Creates a DB shard group without a standby DB shard group. This is the default value.
153486
+ + 1 - Creates a DB shard group with a standby DB shard group in a different Availability Zone (AZ).
153487
+ + 2 - Creates a DB shard group with two standby DB shard groups in two different AZs.
153488
+ * @min `0`
153489
+ */
152915
153490
  ComputeRedundancy?: number;
152916
153491
  /**
152917
153492
  * The name of the primary DB cluster for the DB shard group.
@@ -152934,11 +153509,21 @@ export type RDSDBShardGroupProps = {
152934
153509
  */
152935
153510
  MinACU?: number;
152936
153511
  /**
152937
- * Indicates whether the DB shard group is publicly accessible.
152938
- */
153512
+ * Specifies whether the DB shard group is publicly accessible.
153513
+ When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. Access to the DB shard group is ultimately controlled by the security group it uses. That public access is not permitted if the security group assigned to the DB shard group doesn't permit it.
153514
+ When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.
153515
+ Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
153516
+ If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
153517
+ + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB shard group is private.
153518
+ + If the default VPC in the target Region has an internet gateway attached to it, the DB shard group is public.
153519
+
153520
+ If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
153521
+ + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB shard group is private.
153522
+ + If the subnets are part of a VPC that has an internet gateway attached to it, the DB shard group is public.
153523
+ */
152939
153524
  PubliclyAccessible?: boolean;
152940
153525
  /**
152941
- * An array of key-value pairs to apply to this resource.
153526
+ * An optional set of key-value pairs to associate arbitrary data of your choosing with the DB shard group.
152942
153527
  * @maxLength `50`
152943
153528
  */
152944
153529
  Tags?: RDSDBShardGroupTag[];
@@ -152948,29 +153533,24 @@ export type RDSDBShardGroupProps = {
152948
153533
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbshardgroup.html#aws-resource-rds-dbshardgroup-return-values}
152949
153534
  */
152950
153535
  export type RDSDBShardGroupAttributes = {
152951
- /**
152952
- * The Amazon Web Services Region-unique, immutable identifier for the DB shard group.
152953
- */
152954
153536
  DBShardGroupResourceId: string;
152955
- /**
152956
- * The connection endpoint for the DB shard group.
152957
- */
152958
153537
  Endpoint: string;
152959
153538
  };
152960
153539
  /**
152961
153540
  * Type definition for `AWS::RDS::DBShardGroup.Tag`.
152962
- * A key-value pair to associate with a resource.
153541
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
153542
+ For more information, see [Tagging Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
152963
153543
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbshardgroup-tag.html}
152964
153544
  */
152965
153545
  export type RDSDBShardGroupTag = {
152966
153546
  /**
152967
- * 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 -.
153547
+ * A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
152968
153548
  * @minLength `1`
152969
153549
  * @maxLength `128`
152970
153550
  */
152971
153551
  Key: string;
152972
153552
  /**
152973
- * The value for the tag. You can specify a value that is 0 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 -.
153553
+ * A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
152974
153554
  * @minLength `0`
152975
153555
  * @maxLength `256`
152976
153556
  */
@@ -175897,6 +176477,7 @@ export type SNSTopicProps = {
175897
176477
  * 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.
175898
176478
  */
175899
176479
  DisplayName?: string;
176480
+ FifoThroughputScope?: string;
175900
176481
  /**
175901
176482
  * Set to true to create a FIFO topic.
175902
176483
  */
@@ -189640,6 +190221,11 @@ export interface ResourceTypes {
189640
190221
  "AWS::NimbleStudio::StreamingImage": NimbleStudioStreamingImageProps;
189641
190222
  "AWS::NimbleStudio::Studio": NimbleStudioStudioProps;
189642
190223
  "AWS::NimbleStudio::StudioComponent": NimbleStudioStudioComponentProps;
190224
+ "AWS::Notifications::ChannelAssociation": NotificationsChannelAssociationProps;
190225
+ "AWS::Notifications::EventRule": NotificationsEventRuleProps;
190226
+ "AWS::Notifications::NotificationConfiguration": NotificationsNotificationConfigurationProps;
190227
+ "AWS::Notifications::NotificationHub": NotificationsNotificationHubProps;
190228
+ "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactProps;
189643
190229
  "AWS::Oam::Link": OamLinkProps;
189644
190230
  "AWS::Oam::Sink": OamSinkProps;
189645
190231
  "AWS::Omics::AnnotationStore": OmicsAnnotationStoreProps;
@@ -190902,6 +191488,10 @@ export interface AttributeTypes {
190902
191488
  "AWS::NimbleStudio::StreamingImage": NimbleStudioStreamingImageAttributes;
190903
191489
  "AWS::NimbleStudio::Studio": NimbleStudioStudioAttributes;
190904
191490
  "AWS::NimbleStudio::StudioComponent": NimbleStudioStudioComponentAttributes;
191491
+ "AWS::Notifications::EventRule": NotificationsEventRuleAttributes;
191492
+ "AWS::Notifications::NotificationConfiguration": NotificationsNotificationConfigurationAttributes;
191493
+ "AWS::Notifications::NotificationHub": NotificationsNotificationHubAttributes;
191494
+ "AWS::NotificationsContacts::EmailContact": NotificationsContactsEmailContactAttributes;
190905
191495
  "AWS::Oam::Link": OamLinkAttributes;
190906
191496
  "AWS::Oam::Sink": OamSinkAttributes;
190907
191497
  "AWS::Omics::AnnotationStore": OmicsAnnotationStoreAttributes;
@@ -192226,6 +192816,11 @@ export declare const ResourceType: {
192226
192816
  readonly NimbleStudioStreamingImage: "AWS::NimbleStudio::StreamingImage";
192227
192817
  readonly NimbleStudioStudio: "AWS::NimbleStudio::Studio";
192228
192818
  readonly NimbleStudioStudioComponent: "AWS::NimbleStudio::StudioComponent";
192819
+ readonly NotificationsChannelAssociation: "AWS::Notifications::ChannelAssociation";
192820
+ readonly NotificationsEventRule: "AWS::Notifications::EventRule";
192821
+ readonly NotificationsNotificationConfiguration: "AWS::Notifications::NotificationConfiguration";
192822
+ readonly NotificationsNotificationHub: "AWS::Notifications::NotificationHub";
192823
+ readonly NotificationsContactsEmailContact: "AWS::NotificationsContacts::EmailContact";
192229
192824
  readonly OamLink: "AWS::Oam::Link";
192230
192825
  readonly OamSink: "AWS::Oam::Sink";
192231
192826
  readonly OmicsAnnotationStore: "AWS::Omics::AnnotationStore";