@awboost/cfn-resource-types 0.1.117 → 0.1.119

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.
@@ -70,6 +70,30 @@ export type BedrockKnowledgeBaseAttributes = {
70
70
  */
71
71
  UpdatedAt: string;
72
72
  };
73
+ /**
74
+ * Type definition for `AWS::Bedrock::KnowledgeBase.BedrockEmbeddingModelConfiguration`.
75
+ * The vector configuration details for the Bedrock embeddings model.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-bedrockembeddingmodelconfiguration.html}
77
+ */
78
+ export type BedrockEmbeddingModelConfiguration = {
79
+ /**
80
+ * The dimensions details for the vector configuration used on the Bedrock embeddings model.
81
+ * @min `0`
82
+ * @max `4096`
83
+ */
84
+ Dimensions?: number;
85
+ };
86
+ /**
87
+ * Type definition for `AWS::Bedrock::KnowledgeBase.EmbeddingModelConfiguration`.
88
+ * The embeddings model configuration details for the vector model used in Knowledge Base.
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-embeddingmodelconfiguration.html}
90
+ */
91
+ export type EmbeddingModelConfiguration = {
92
+ /**
93
+ * The vector configuration details for the Bedrock embeddings model.
94
+ */
95
+ BedrockEmbeddingModelConfiguration?: BedrockEmbeddingModelConfiguration;
96
+ };
73
97
  /**
74
98
  * Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseConfiguration`.
75
99
  * Contains details about the embeddings model used for the knowledge base.
@@ -96,13 +120,84 @@ export type KnowledgeBaseStatus = "CREATING" | "ACTIVE" | "DELETING" | "UPDATING
96
120
  * The storage type of a knowledge base.
97
121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestoragetype.html}
98
122
  */
99
- export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS";
123
+ export type KnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS";
100
124
  /**
101
125
  * Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseType`.
102
126
  * The type of a knowledge base.
103
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasetype.html}
104
128
  */
105
129
  export type KnowledgeBaseType = "VECTOR";
130
+ /**
131
+ * Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasConfiguration`.
132
+ * Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-mongodbatlasconfiguration.html}
134
+ */
135
+ export type MongoDbAtlasConfiguration = {
136
+ /**
137
+ * Name of the collection within MongoDB Atlas.
138
+ * @maxLength `63`
139
+ * @pattern `^.*$`
140
+ */
141
+ CollectionName: string;
142
+ /**
143
+ * The ARN of the secret that you created in AWS Secrets Manager that is linked to your Amazon Mongo database.
144
+ * @pattern `^arn:aws(|-cn|-us-gov):secretsmanager:[a-z0-9-]{1,20}:([0-9]{12}|):secret:[a-zA-Z0-9!/_+=.@-]{1,512}$`
145
+ */
146
+ CredentialsSecretArn: string;
147
+ /**
148
+ * Name of the database within MongoDB Atlas.
149
+ * @maxLength `63`
150
+ * @pattern `^.*$`
151
+ */
152
+ DatabaseName: string;
153
+ /**
154
+ * MongoDB Atlas endpoint.
155
+ * @maxLength `2048`
156
+ * @pattern `^[a-zA-Z0-9_-]+\.[a-zA-Z0-9_-]+\.mongodb\.net$`
157
+ */
158
+ Endpoint: string;
159
+ /**
160
+ * MongoDB Atlas endpoint service name.
161
+ * @maxLength `255`
162
+ * @pattern `^(?:arn:aws(?:-us-gov|-cn|-iso|-iso-[a-z])*:.+:.*:\d+:.+/.+$|[a-zA-Z0-9*]+[a-zA-Z0-9._-]*)$`
163
+ */
164
+ EndpointServiceName?: string;
165
+ /**
166
+ * Contains the names of the fields to which to map information about the vector store.
167
+ */
168
+ FieldMapping: MongoDbAtlasFieldMapping;
169
+ /**
170
+ * Name of a MongoDB Atlas index.
171
+ * @maxLength `2048`
172
+ * @pattern `^.*$`
173
+ */
174
+ VectorIndexName: string;
175
+ };
176
+ /**
177
+ * Type definition for `AWS::Bedrock::KnowledgeBase.MongoDbAtlasFieldMapping`.
178
+ * Contains the names of the fields to which to map information about the vector store.
179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-mongodbatlasfieldmapping.html}
180
+ */
181
+ export type MongoDbAtlasFieldMapping = {
182
+ /**
183
+ * The name of the field in which Amazon Bedrock stores metadata about the vector store.
184
+ * @maxLength `2048`
185
+ * @pattern `^.*$`
186
+ */
187
+ MetadataField: string;
188
+ /**
189
+ * The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.
190
+ * @maxLength `2048`
191
+ * @pattern `^.*$`
192
+ */
193
+ TextField: string;
194
+ /**
195
+ * The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
196
+ * @maxLength `2048`
197
+ * @pattern `^.*$`
198
+ */
199
+ VectorField: string;
200
+ };
106
201
  /**
107
202
  * Type definition for `AWS::Bedrock::KnowledgeBase.OpenSearchServerlessConfiguration`.
108
203
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
@@ -268,6 +363,10 @@ export type RdsFieldMapping = {
268
363
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-storageconfiguration.html}
269
364
  */
270
365
  export type StorageConfiguration = {
366
+ /**
367
+ * Contains the storage configuration of the knowledge base in MongoDb Atlas Cloud.
368
+ */
369
+ MongoDbAtlasConfiguration?: MongoDbAtlasConfiguration;
271
370
  /**
272
371
  * Contains the storage configuration of the knowledge base in Amazon OpenSearch Service.
273
372
  */
@@ -301,9 +400,13 @@ export type VectorKnowledgeBaseConfiguration = {
301
400
  * The ARN of the model used to create vector embeddings for the knowledge base.
302
401
  * @minLength `20`
303
402
  * @maxLength `2048`
304
- * @pattern `^(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:(([0-9]{12}:custom-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}/[a-z0-9]{12})|(:foundation-model/[a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|([0-9]{12}:provisioned-model/[a-z0-9]{12})))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.:]?[a-z0-9-]{1,63}))|(([0-9a-zA-Z][_-]?)+)$`
403
+ * @pattern `^(arn:aws(-[^:]+)?:[a-z0-9-]+:[a-z0-9-]{1,20}:[0-9]{0,12}:[a-zA-Z0-9-:/._+]+)$`
305
404
  */
306
405
  EmbeddingModelArn: string;
406
+ /**
407
+ * The embeddings model configuration details for the vector model used in Knowledge Base.
408
+ */
409
+ EmbeddingModelConfiguration?: EmbeddingModelConfiguration;
307
410
  };
308
411
  /**
309
412
  * Definition of AWS::Bedrock::KnowledgeBase Resource Type
@@ -9,6 +9,12 @@ export type ECRRepositoryCreationTemplateProperties = {
9
9
  * A list of enumerable Strings representing the repository creation scenarios that the template will apply towards.
10
10
  */
11
11
  AppliedFor: AppliedForItem[];
12
+ /**
13
+ * The ARN of the role to be assumed by ECR. This role must be in the same account as the registry that you are configuring.
14
+ * @maxLength `2048`
15
+ * @pattern `^arn:aws[-a-z0-9]*:iam::[0-9]{12}:role/[A-Za-z0-9+=,-.@_]*$`
16
+ */
17
+ CustomRoleArn?: string;
12
18
  /**
13
19
  * The description of the template.
14
20
  * @minLength `0`
@@ -46,6 +46,10 @@ export type EKSClusterProperties = {
46
46
  * An array of key-value pairs to apply to this resource.
47
47
  */
48
48
  Tags?: Tag[];
49
+ /**
50
+ * An object representing the Upgrade Policy to use for the cluster.
51
+ */
52
+ UpgradePolicy?: UpgradePolicy;
49
53
  /**
50
54
  * The desired Kubernetes version for your cluster. If you don't specify a value here, the latest version available in Amazon EKS is used.
51
55
  * @pattern `1\.\d\d`
@@ -259,6 +263,17 @@ export type Tag = {
259
263
  */
260
264
  Value: string;
261
265
  };
266
+ /**
267
+ * Type definition for `AWS::EKS::Cluster.UpgradePolicy`.
268
+ * An object representing the Upgrade Policy to use for the cluster.
269
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-upgradepolicy.html}
270
+ */
271
+ export type UpgradePolicy = {
272
+ /**
273
+ * Specify the support type for your cluster.
274
+ */
275
+ SupportType?: "STANDARD" | "EXTENDED";
276
+ };
262
277
  /**
263
278
  * Resource type definition for `AWS::EKS::Cluster`.
264
279
  * An object representing an Amazon EKS cluster.
@@ -79,7 +79,6 @@ export type IdMappingRuleBasedProperties = {
79
79
  */
80
80
  export type IdMappingTechniques = {
81
81
  IdMappingType?: "PROVIDER" | "RULE_BASED";
82
- NormalizationVersion?: string;
83
82
  ProviderProperties?: ProviderProperties;
84
83
  RuleBasedProperties?: IdMappingRuleBasedProperties;
85
84
  };
@@ -253,7 +253,7 @@ export type SecurityServicePolicyData = {
253
253
  /**
254
254
  * Firewall managed service data.
255
255
  * @minLength `1`
256
- * @maxLength `8192`
256
+ * @maxLength `30000`
257
257
  */
258
258
  ManagedServiceData?: string;
259
259
  /**
@@ -38,7 +38,8 @@ export type GlobalAcceleratorCrossAccountAttachmentAttributes = {
38
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-globalaccelerator-crossaccountattachment-resource.html}
39
39
  */
40
40
  export type Resource = {
41
- EndpointId: string;
41
+ Cidr?: string;
42
+ EndpointId?: string;
42
43
  Region?: string;
43
44
  };
44
45
  /**
@@ -5,75 +5,151 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
6
6
  */
7
7
  export type GlueTriggerProperties = {
8
+ /**
9
+ * The actions initiated by this trigger.
10
+ */
8
11
  Actions: Action[];
12
+ /**
13
+ * A description of this trigger.
14
+ */
9
15
  Description?: string;
16
+ /**
17
+ * Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
18
+ */
10
19
  EventBatchingCondition?: EventBatchingCondition;
20
+ /**
21
+ * The name of the trigger.
22
+ */
11
23
  Name?: string;
24
+ /**
25
+ * The predicate of this trigger, which defines when it will fire.
26
+ */
12
27
  Predicate?: Predicate;
28
+ /**
29
+ * A cron expression used to specify the schedule.
30
+ */
13
31
  Schedule?: string;
32
+ /**
33
+ * Set to true to start SCHEDULED and CONDITIONAL triggers when created. True is not supported for ON_DEMAND triggers.
34
+ */
14
35
  StartOnCreation?: boolean;
36
+ /**
37
+ * The tags to use with this trigger.
38
+ */
15
39
  Tags?: Record<string, any>;
40
+ /**
41
+ * The type of trigger that this is.
42
+ */
16
43
  Type: string;
44
+ /**
45
+ * The name of the workflow associated with the trigger.
46
+ */
17
47
  WorkflowName?: string;
18
48
  };
19
- /**
20
- * Attribute type definition for `AWS::Glue::Trigger`.
21
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#aws-resource-glue-trigger-return-values}
22
- */
23
- export type GlueTriggerAttributes = {
24
- Id: string;
25
- };
26
49
  /**
27
50
  * Type definition for `AWS::Glue::Trigger.Action`.
51
+ * The actions initiated by this trigger.
28
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html}
29
53
  */
30
54
  export type Action = {
55
+ /**
56
+ * The job arguments used when this trigger fires. For this job run, they replace the default arguments set in the job definition itself.
57
+ */
31
58
  Arguments?: Record<string, any>;
59
+ /**
60
+ * The name of the crawler to be used with this action.
61
+ */
32
62
  CrawlerName?: string;
63
+ /**
64
+ * The name of a job to be executed.
65
+ */
33
66
  JobName?: string;
67
+ /**
68
+ * Specifies configuration properties of a job run notification.
69
+ */
34
70
  NotificationProperty?: NotificationProperty;
71
+ /**
72
+ * The name of the SecurityConfiguration structure to be used with this action.
73
+ */
35
74
  SecurityConfiguration?: string;
75
+ /**
76
+ * The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours). This overrides the timeout value set in the parent job.
77
+ */
36
78
  Timeout?: number;
37
79
  };
38
80
  /**
39
81
  * Type definition for `AWS::Glue::Trigger.Condition`.
82
+ * Defines a condition under which a trigger fires.
40
83
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html}
41
84
  */
42
85
  export type Condition = {
86
+ /**
87
+ * The state of the crawler to which this condition applies.
88
+ */
43
89
  CrawlState?: string;
90
+ /**
91
+ * The name of the crawler to which this condition applies.
92
+ */
44
93
  CrawlerName?: string;
94
+ /**
95
+ * The name of the job whose JobRuns this condition applies to, and on which this trigger waits.
96
+ */
45
97
  JobName?: string;
98
+ /**
99
+ * A logical operator.
100
+ */
46
101
  LogicalOperator?: string;
102
+ /**
103
+ * The condition state. Currently, the values supported are SUCCEEDED, STOPPED, TIMEOUT, and FAILED.
104
+ */
47
105
  State?: string;
48
106
  };
49
107
  /**
50
108
  * Type definition for `AWS::Glue::Trigger.EventBatchingCondition`.
109
+ * Batch condition that must be met (specified number of events received or batch time window expired) before EventBridge event trigger fires.
51
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-eventbatchingcondition.html}
52
111
  */
53
112
  export type EventBatchingCondition = {
113
+ /**
114
+ * Number of events that must be received from Amazon EventBridge before EventBridge event trigger fires.
115
+ */
54
116
  BatchSize: number;
117
+ /**
118
+ * Window of time in seconds after which EventBridge event trigger fires. Window starts when first event is received.
119
+ */
55
120
  BatchWindow?: number;
56
121
  };
57
122
  /**
58
123
  * Type definition for `AWS::Glue::Trigger.NotificationProperty`.
124
+ * Specifies configuration properties of a job run notification.
59
125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-notificationproperty.html}
60
126
  */
61
127
  export type NotificationProperty = {
128
+ /**
129
+ * After a job run starts, the number of minutes to wait before sending a job run delay notification
130
+ */
62
131
  NotifyDelayAfter?: number;
63
132
  };
64
133
  /**
65
134
  * Type definition for `AWS::Glue::Trigger.Predicate`.
135
+ * The predicate of this trigger, which defines when it will fire.
66
136
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html}
67
137
  */
68
138
  export type Predicate = {
139
+ /**
140
+ * A list of the conditions that determine when the trigger will fire.
141
+ */
69
142
  Conditions?: Condition[];
143
+ /**
144
+ * An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.
145
+ */
70
146
  Logical?: string;
71
147
  };
72
148
  /**
73
149
  * Resource Type definition for AWS::Glue::Trigger
74
150
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html}
75
151
  */
76
- export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, GlueTriggerAttributes> {
152
+ export declare class GlueTrigger extends $Resource<"AWS::Glue::Trigger", GlueTriggerProperties, Record<string, never>> {
77
153
  static readonly Type = "AWS::Glue::Trigger";
78
154
  constructor(logicalId: string, properties: GlueTriggerProperties, options?: $ResourceOptions);
79
155
  }
@@ -18,6 +18,7 @@ export type KinesisFirehoseDeliveryStreamProperties = {
18
18
  ElasticsearchDestinationConfiguration?: ElasticsearchDestinationConfiguration;
19
19
  ExtendedS3DestinationConfiguration?: ExtendedS3DestinationConfiguration;
20
20
  HttpEndpointDestinationConfiguration?: HttpEndpointDestinationConfiguration;
21
+ IcebergDestinationConfiguration?: IcebergDestinationConfiguration;
21
22
  KinesisStreamSourceConfiguration?: KinesisStreamSourceConfiguration;
22
23
  MSKSourceConfiguration?: MSKSourceConfiguration;
23
24
  RedshiftDestinationConfiguration?: RedshiftDestinationConfiguration;
@@ -161,6 +162,18 @@ export type BufferingHints = {
161
162
  IntervalInSeconds?: number;
162
163
  SizeInMBs?: number;
163
164
  };
165
+ /**
166
+ * Type definition for `AWS::KinesisFirehose::DeliveryStream.CatalogConfiguration`.
167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-catalogconfiguration.html}
168
+ */
169
+ export type CatalogConfiguration = {
170
+ /**
171
+ * @minLength `1`
172
+ * @maxLength `512`
173
+ * @pattern `arn:.*`
174
+ */
175
+ CatalogArn?: string;
176
+ };
164
177
  /**
165
178
  * Type definition for `AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions`.
166
179
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html}
@@ -222,6 +235,28 @@ export type Deserializer = {
222
235
  HiveJsonSerDe?: HiveJsonSerDe;
223
236
  OpenXJsonSerDe?: OpenXJsonSerDe;
224
237
  };
238
+ /**
239
+ * Type definition for `AWS::KinesisFirehose::DeliveryStream.DestinationTableConfiguration`.
240
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-destinationtableconfiguration.html}
241
+ */
242
+ export type DestinationTableConfiguration = {
243
+ /**
244
+ * @minLength `1`
245
+ * @maxLength `512`
246
+ */
247
+ DestinationDatabaseName: string;
248
+ /**
249
+ * @minLength `1`
250
+ * @maxLength `512`
251
+ */
252
+ DestinationTableName: string;
253
+ /**
254
+ * @minLength `1`
255
+ * @maxLength `1024`
256
+ */
257
+ S3ErrorOutputPrefix?: string;
258
+ UniqueKeys?: string[];
259
+ };
225
260
  /**
226
261
  * Type definition for `AWS::KinesisFirehose::DeliveryStream.DocumentIdOptions`.
227
262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-documentidoptions.html}
@@ -428,6 +463,26 @@ export type HttpEndpointRequestConfiguration = {
428
463
  CommonAttributes?: HttpEndpointCommonAttribute[];
429
464
  ContentEncoding?: "NONE" | "GZIP";
430
465
  };
466
+ /**
467
+ * Type definition for `AWS::KinesisFirehose::DeliveryStream.IcebergDestinationConfiguration`.
468
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-icebergdestinationconfiguration.html}
469
+ */
470
+ export type IcebergDestinationConfiguration = {
471
+ BufferingHints?: BufferingHints;
472
+ CatalogConfiguration: CatalogConfiguration;
473
+ CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
474
+ DestinationTableConfigurationList?: DestinationTableConfiguration[];
475
+ ProcessingConfiguration?: ProcessingConfiguration;
476
+ RetryOptions?: RetryOptions;
477
+ /**
478
+ * @minLength `1`
479
+ * @maxLength `512`
480
+ * @pattern `arn:.*`
481
+ */
482
+ RoleARN: string;
483
+ S3Configuration: S3DestinationConfiguration;
484
+ s3BackupMode?: "AllData" | "FailedDataOnly";
485
+ };
431
486
  /**
432
487
  * Type definition for `AWS::KinesisFirehose::DeliveryStream.InputFormatConfiguration`.
433
488
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-inputformatconfiguration.html}
@@ -472,6 +527,7 @@ export type MSKSourceConfiguration = {
472
527
  * @pattern `arn:.*`
473
528
  */
474
529
  MSKClusterARN: string;
530
+ ReadFromTimestamp?: string;
475
531
  /**
476
532
  * @minLength `1`
477
533
  * @maxLength `255`
@@ -672,6 +728,14 @@ export type Serializer = {
672
728
  OrcSerDe?: OrcSerDe;
673
729
  ParquetSerDe?: ParquetSerDe;
674
730
  };
731
+ /**
732
+ * Type definition for `AWS::KinesisFirehose::DeliveryStream.SnowflakeBufferingHints`.
733
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-snowflakebufferinghints.html}
734
+ */
735
+ export type SnowflakeBufferingHints = {
736
+ IntervalInSeconds?: number;
737
+ SizeInMBs?: number;
738
+ };
675
739
  /**
676
740
  * Type definition for `AWS::KinesisFirehose::DeliveryStream.SnowflakeDestinationConfiguration`.
677
741
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-snowflakedestinationconfiguration.html}
@@ -683,6 +747,7 @@ export type SnowflakeDestinationConfiguration = {
683
747
  * @pattern `.+?\.snowflakecomputing\.com`
684
748
  */
685
749
  AccountUrl: string;
750
+ BufferingHints?: SnowflakeBufferingHints;
686
751
  CloudWatchLoggingOptions?: CloudWatchLoggingOptions;
687
752
  /**
688
753
  * @minLength `1`
@@ -371,7 +371,7 @@ export type RDSDBClusterProperties = {
371
371
  PreferredMaintenanceWindow?: string;
372
372
  /**
373
373
  * Specifies whether the DB cluster is publicly accessible.
374
- When the DB cluster is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from within the DB cluster's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB cluster's VPC. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
374
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
375
375
  When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
376
376
  Valid for Cluster Type: Multi-AZ DB clusters only
377
377
  Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
@@ -529,7 +529,7 @@ export type RDSDBClusterAttributes = {
529
529
  */
530
530
  MasterUserSecret: {
531
531
  /**
532
- * The Amazon Resource Name (ARN) of the secret.
532
+ * The Amazon Resource Name (ARN) of the secret. This parameter is a return value that you can retrieve using the ``Fn::GetAtt`` intrinsic function. For more information, see [Return values](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#aws-resource-rds-dbcluster-return-values).
533
533
  */
534
534
  SecretArn: string;
535
535
  };
@@ -270,7 +270,6 @@ export type RDSDBInstanceProperties = {
270
270
  + ``DBClusterIdentifier``
271
271
  + ``DBName``
272
272
  + ``DeleteAutomatedBackups``
273
- + ``EnablePerformanceInsights``
274
273
  + ``KmsKeyId``
275
274
  + ``MasterUsername``
276
275
  + ``MasterUserPassword``
@@ -821,7 +820,7 @@ export type RDSDBInstanceAttributes = {
821
820
  */
822
821
  MasterUserSecret: {
823
822
  /**
824
- * The Amazon Resource Name (ARN) of the secret.
823
+ * The Amazon Resource Name (ARN) of the secret. This parameter is a return value that you can retrieve using the ``Fn::GetAtt`` intrinsic function. For more information, see [Return values](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#aws-resource-rds-dbinstance-return-values).
825
824
  */
826
825
  SecretArn: string;
827
826
  };
@@ -2,23 +2,24 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
4
  * Resource type definition for `AWS::RDS::Integration`.
5
- * Creates a zero-ETL integration with Amazon Redshift.
5
+ * A zero-ETL integration with Amazon Redshift.
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
7
7
  */
8
8
  export type RDSIntegrationProperties = {
9
9
  /**
10
- * An optional set of non-secret key–value pairs that contains additional contextual information about the data.
11
- */
10
+ * An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see [Encryption context](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context) in the *Key Management Service Developer Guide*.
11
+ You can only include this parameter if you specify the ``KMSKeyId`` parameter.
12
+ */
12
13
  AdditionalEncryptionContext?: EncryptionContextMap;
13
14
  /**
14
- * The data filter for the integration.
15
+ * Data filters for the integration. These filters determine which tables from the source database are sent to the target Amazon Redshift data warehouse.
15
16
  * @minLength `1`
16
17
  * @maxLength `25600`
17
18
  * @pattern `[a-zA-Z0-9_ "\\\-$,*.:?+\/]*`
18
19
  */
19
20
  DataFilter?: string;
20
21
  /**
21
- * The description of the integration.
22
+ * A description of the integration.
22
23
  * @minLength `1`
23
24
  * @maxLength `1000`
24
25
  */
@@ -30,15 +31,15 @@ export type RDSIntegrationProperties = {
30
31
  */
31
32
  IntegrationName?: string;
32
33
  /**
33
- * An optional AWS Key Management System (AWS KMS) key ARN for the key used to to encrypt the integration. The resource accepts the key ID and the key ARN forms. The key ID form can be used if the KMS key is owned by te same account. If the KMS key belongs to a different account than the calling account, the full key ARN must be specified. Do not use the key alias or the key alias ARN as this will cause a false drift of the resource.
34
+ * The AWS Key Management System (AWS KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, RDS uses a default AWS owned key.
34
35
  */
35
36
  KMSKeyId?: string;
36
37
  /**
37
- * The Amazon Resource Name (ARN) of the Aurora DB cluster to use as the source for replication.
38
+ * The Amazon Resource Name (ARN) of the database to use as the source for replication.
38
39
  */
39
40
  SourceArn: string;
40
41
  /**
41
- * An array of key-value pairs to apply to this resource.
42
+ * A list of tags. 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.*.
42
43
  * @maxLength `50`
43
44
  */
44
45
  Tags?: Tag[];
@@ -53,9 +54,6 @@ export type RDSIntegrationProperties = {
53
54
  */
54
55
  export type RDSIntegrationAttributes = {
55
56
  CreateTime: string;
56
- /**
57
- * The ARN of the integration.
58
- */
59
57
  IntegrationArn: string;
60
58
  };
61
59
  /**
@@ -66,18 +64,19 @@ export type RDSIntegrationAttributes = {
66
64
  export type EncryptionContextMap = Record<string, string>;
67
65
  /**
68
66
  * Type definition for `AWS::RDS::Integration.Tag`.
69
- * A key-value pair to associate with a resource.
67
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
68
+ 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*.
70
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-integration-tag.html}
71
70
  */
72
71
  export type Tag = {
73
72
  /**
74
- * 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 -.
73
+ * 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}_.:/=+\\-@]*)$").
75
74
  * @minLength `1`
76
75
  * @maxLength `128`
77
76
  */
78
77
  Key: string;
79
78
  /**
80
- * 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 -.
79
+ * 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}_.:/=+\\-@]*)$").
81
80
  * @minLength `0`
82
81
  * @maxLength `256`
83
82
  */
@@ -85,7 +84,7 @@ export type Tag = {
85
84
  };
86
85
  /**
87
86
  * Resource type definition for `AWS::RDS::Integration`.
88
- * Creates a zero-ETL integration with Amazon Redshift.
87
+ * A zero-ETL integration with Amazon Redshift.
89
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
90
89
  */
91
90
  export declare class RDSIntegration extends $Resource<"AWS::RDS::Integration", RDSIntegrationProperties, RDSIntegrationAttributes> {
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
3
  * Resource type definition for `AWS::RDS::Integration`.
4
- * Creates a zero-ETL integration with Amazon Redshift.
4
+ * A zero-ETL integration with Amazon Redshift.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-integration.html}
6
6
  */
7
7
  export class RDSIntegration extends $Resource {
@@ -62,6 +62,12 @@ export type ResourceSpec = {
62
62
  * The instance type that the image version runs on.
63
63
  */
64
64
  InstanceType?: "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.p3dn.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.geospatial.interactive" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge";
65
+ /**
66
+ * The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
67
+ * @maxLength `256`
68
+ * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:studio-lifecycle-config/.*`
69
+ */
70
+ LifecycleConfigArn?: string;
65
71
  /**
66
72
  * The ARN of the SageMaker image that the image version belongs to.
67
73
  * @minLength `1`