@awboost/cfn-resource-types 0.1.212 → 0.1.214
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-ApplicationAutoScaling-ScalingPolicy.d.ts +98 -12
- package/lib/AWS-CleanRooms-ConfiguredTable.d.ts +84 -0
- package/lib/AWS-CleanRooms-ConfiguredTableAssociation.d.ts +1 -1
- package/lib/AWS-Connect-Queue.d.ts +16 -0
- package/lib/AWS-Connect-TaskTemplate.d.ts +5 -0
- package/lib/AWS-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-LaunchTemplate.d.ts +15 -24
- package/lib/AWS-ECS-TaskDefinition.d.ts +4 -4
- package/lib/AWS-EMRServerless-Application.d.ts +19 -0
- package/lib/AWS-IoT-Command.d.ts +160 -0
- package/lib/AWS-IoT-Command.js +13 -0
- package/lib/AWS-Logs-LogGroup.d.ts +1 -0
- package/lib/AWS-Logs-MetricFilter.d.ts +1 -0
- package/lib/AWS-Logs-QueryDefinition.d.ts +4 -0
- package/lib/AWS-Logs-SubscriptionFilter.d.ts +1 -0
- package/lib/AWS-Logs-Transformer.d.ts +375 -0
- package/lib/AWS-Logs-Transformer.js +13 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts +144 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.js +12 -0
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +38 -28
- package/lib/AWS-RDS-CustomDBEngineVersion.js +2 -1
- package/lib/AWS-RedshiftServerless-Workgroup.d.ts +36 -0
- package/lib/AWS-S3Tables-TableBucket.d.ts +60 -0
- package/lib/AWS-S3Tables-TableBucket.js +13 -0
- package/lib/AWS-S3Tables-TableBucketPolicy.d.ts +33 -0
- package/lib/AWS-S3Tables-TableBucketPolicy.js +13 -0
- package/package.json +1 -1
|
@@ -18,6 +18,9 @@ export type ApplicationAutoScalingScalingPolicyProperties = {
|
|
|
18
18
|
``StepScaling``—Not supported for DynamoDB, Amazon Comprehend, Lambda, Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
|
|
19
19
|
*/
|
|
20
20
|
PolicyType: string;
|
|
21
|
+
/**
|
|
22
|
+
* The predictive scaling policy configuration.
|
|
23
|
+
*/
|
|
21
24
|
PredictiveScalingPolicyConfiguration?: PredictiveScalingPolicyConfiguration;
|
|
22
25
|
/**
|
|
23
26
|
* The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.
|
|
@@ -174,13 +177,18 @@ export type PredefinedMetricSpecification = {
|
|
|
174
177
|
};
|
|
175
178
|
/**
|
|
176
179
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedCapacityMetric`.
|
|
180
|
+
* Represents a CloudWatch metric of your choosing for a predictive scaling policy.
|
|
177
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedcapacitymetric.html}
|
|
178
182
|
*/
|
|
179
183
|
export type PredictiveScalingCustomizedCapacityMetric = {
|
|
184
|
+
/**
|
|
185
|
+
* One or more metric data queries to provide data points for a metric specification.
|
|
186
|
+
*/
|
|
180
187
|
MetricDataQueries: PredictiveScalingMetricDataQuery[];
|
|
181
188
|
};
|
|
182
189
|
/**
|
|
183
190
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedLoadMetric`.
|
|
191
|
+
* The customized load metric specification.
|
|
184
192
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedloadmetric.html}
|
|
185
193
|
*/
|
|
186
194
|
export type PredictiveScalingCustomizedLoadMetric = {
|
|
@@ -188,18 +196,23 @@ export type PredictiveScalingCustomizedLoadMetric = {
|
|
|
188
196
|
};
|
|
189
197
|
/**
|
|
190
198
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedScalingMetric`.
|
|
199
|
+
* One or more metric data queries to provide data points for a metric specification.
|
|
191
200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedscalingmetric.html}
|
|
192
201
|
*/
|
|
193
202
|
export type PredictiveScalingCustomizedScalingMetric = {
|
|
203
|
+
/**
|
|
204
|
+
* One or more metric data queries to provide data points for a metric specification.
|
|
205
|
+
*/
|
|
194
206
|
MetricDataQueries: PredictiveScalingMetricDataQuery[];
|
|
195
207
|
};
|
|
196
208
|
/**
|
|
197
209
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetric`.
|
|
210
|
+
* Describes the scaling metric.
|
|
198
211
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetric.html}
|
|
199
212
|
*/
|
|
200
213
|
export type PredictiveScalingMetric = {
|
|
201
214
|
/**
|
|
202
|
-
*
|
|
215
|
+
* Describes the dimensions of the metric.
|
|
203
216
|
*/
|
|
204
217
|
Dimensions?: PredictiveScalingMetricDimension[];
|
|
205
218
|
/**
|
|
@@ -213,15 +226,17 @@ export type PredictiveScalingMetric = {
|
|
|
213
226
|
};
|
|
214
227
|
/**
|
|
215
228
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDataQuery`.
|
|
229
|
+
* The metric data to return. Also defines whether this call is returning data for one metric only, or whether it is performing a math expression on the values of returned metric statistics to create a new time series. A time series is a series of data points, each of which is associated with a timestamp.
|
|
216
230
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdataquery.html}
|
|
217
231
|
*/
|
|
218
232
|
export type PredictiveScalingMetricDataQuery = {
|
|
219
233
|
/**
|
|
220
|
-
|
|
221
|
-
|
|
234
|
+
* The math expression to perform on the returned data, if this object is performing a math expression. This expression can use the ``Id`` of the other metrics to refer to those metrics, and can also use the ``Id`` of other expressions to use the result of those expressions.
|
|
235
|
+
Conditional: Within each ``MetricDataQuery`` object, you must specify either ``Expression`` or ``MetricStat``, but not both.
|
|
236
|
+
*/
|
|
222
237
|
Expression?: string;
|
|
223
238
|
/**
|
|
224
|
-
* A short name that identifies the object's results in the response.
|
|
239
|
+
* A short name that identifies the object's results in the response. This name must be unique among all ``MetricDataQuery`` objects specified for a single scaling policy. If you are performing math expressions on this set of data, this name represents that data and can serve as a variable in the mathematical expression. The valid characters are letters, numbers, and underscores. The first character must be a lowercase letter.
|
|
225
240
|
*/
|
|
226
241
|
Id?: string;
|
|
227
242
|
/**
|
|
@@ -229,16 +244,20 @@ export type PredictiveScalingMetricDataQuery = {
|
|
|
229
244
|
*/
|
|
230
245
|
Label?: string;
|
|
231
246
|
/**
|
|
232
|
-
|
|
233
|
-
|
|
247
|
+
* Information about the metric data to return.
|
|
248
|
+
Conditional: Within each ``MetricDataQuery`` object, you must specify either ``Expression`` or ``MetricStat``, but not both.
|
|
249
|
+
*/
|
|
234
250
|
MetricStat?: PredictiveScalingMetricStat;
|
|
235
251
|
/**
|
|
236
|
-
|
|
237
|
-
|
|
252
|
+
* Indicates whether to return the timestamps and raw data values of this metric.
|
|
253
|
+
If you use any math expressions, specify ``true`` for this value for only the final math expression that the metric specification is based on. You must specify ``false`` for ``ReturnData`` for all the other metrics and expressions used in the metric specification.
|
|
254
|
+
If you are only retrieving metrics and not performing any math expressions, do not specify anything for ``ReturnData``. This sets it to its default (``true``).
|
|
255
|
+
*/
|
|
238
256
|
ReturnData?: boolean;
|
|
239
257
|
};
|
|
240
258
|
/**
|
|
241
259
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDimension`.
|
|
260
|
+
* Describes the dimension of a metric.
|
|
242
261
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdimension.html}
|
|
243
262
|
*/
|
|
244
263
|
export type PredictiveScalingMetricDimension = {
|
|
@@ -253,68 +272,135 @@ export type PredictiveScalingMetricDimension = {
|
|
|
253
272
|
};
|
|
254
273
|
/**
|
|
255
274
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricSpecification`.
|
|
275
|
+
* This structure specifies the metrics and target utilization settings for a predictive scaling policy.
|
|
276
|
+
You must specify either a metric pair, or a load metric and a scaling metric individually. Specifying a metric pair instead of individual metrics provides a simpler way to configure metrics for a scaling policy. You choose the metric pair, and the policy automatically knows the correct sum and average statistics to use for the load metric and the scaling metric.
|
|
256
277
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricspecification.html}
|
|
257
278
|
*/
|
|
258
279
|
export type PredictiveScalingMetricSpecification = {
|
|
280
|
+
/**
|
|
281
|
+
* The customized capacity metric specification.
|
|
282
|
+
*/
|
|
259
283
|
CustomizedCapacityMetricSpecification?: PredictiveScalingCustomizedCapacityMetric;
|
|
284
|
+
/**
|
|
285
|
+
* The customized load metric specification.
|
|
286
|
+
*/
|
|
260
287
|
CustomizedLoadMetricSpecification?: PredictiveScalingCustomizedLoadMetric;
|
|
288
|
+
/**
|
|
289
|
+
* The customized scaling metric specification.
|
|
290
|
+
*/
|
|
261
291
|
CustomizedScalingMetricSpecification?: PredictiveScalingCustomizedScalingMetric;
|
|
292
|
+
/**
|
|
293
|
+
* The predefined load metric specification.
|
|
294
|
+
*/
|
|
262
295
|
PredefinedLoadMetricSpecification?: PredictiveScalingPredefinedLoadMetric;
|
|
296
|
+
/**
|
|
297
|
+
* The predefined metric pair specification that determines the appropriate scaling metric and load metric to use.
|
|
298
|
+
*/
|
|
263
299
|
PredefinedMetricPairSpecification?: PredictiveScalingPredefinedMetricPair;
|
|
300
|
+
/**
|
|
301
|
+
* The predefined scaling metric specification.
|
|
302
|
+
*/
|
|
264
303
|
PredefinedScalingMetricSpecification?: PredictiveScalingPredefinedScalingMetric;
|
|
304
|
+
/**
|
|
305
|
+
* Specifies the target utilization.
|
|
306
|
+
*/
|
|
265
307
|
TargetValue: number;
|
|
266
308
|
};
|
|
267
309
|
/**
|
|
268
310
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricStat`.
|
|
311
|
+
* This structure defines the CloudWatch metric to return, along with the statistic and unit.
|
|
269
312
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricstat.html}
|
|
270
313
|
*/
|
|
271
314
|
export type PredictiveScalingMetricStat = {
|
|
272
315
|
/**
|
|
273
|
-
* The CloudWatch metric to return, including the metric name, namespace, and dimensions.
|
|
316
|
+
* The CloudWatch metric to return, including the metric name, namespace, and dimensions. To get the exact metric name, namespace, and dimensions, inspect the [Metric](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_Metric.html) object that is returned by a call to [ListMetrics](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_ListMetrics.html).
|
|
274
317
|
*/
|
|
275
318
|
Metric?: PredictiveScalingMetric;
|
|
276
319
|
/**
|
|
277
|
-
|
|
278
|
-
|
|
320
|
+
* The statistic to return. It can include any CloudWatch statistic or extended statistic. For a list of valid values, see the table in [Statistics](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Statistic) in the *Amazon CloudWatch User Guide*.
|
|
321
|
+
The most commonly used metrics for predictive scaling are ``Average`` and ``Sum``.
|
|
322
|
+
*/
|
|
279
323
|
Stat?: string;
|
|
280
324
|
/**
|
|
281
|
-
* The unit to use for the returned data points.
|
|
325
|
+
* The unit to use for the returned data points. For a complete list of the units that CloudWatch supports, see the [MetricDatum](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html) data type in the *Amazon CloudWatch API Reference*.
|
|
282
326
|
*/
|
|
283
327
|
Unit?: string;
|
|
284
328
|
};
|
|
285
329
|
/**
|
|
286
330
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPolicyConfiguration`.
|
|
331
|
+
* Represents a predictive scaling policy configuration.
|
|
287
332
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpolicyconfiguration.html}
|
|
288
333
|
*/
|
|
289
334
|
export type PredictiveScalingPolicyConfiguration = {
|
|
335
|
+
/**
|
|
336
|
+
* Defines the behavior that should be applied if the forecast capacity approaches or exceeds the maximum capacity. Defaults to ``HonorMaxCapacity`` if not specified.
|
|
337
|
+
*/
|
|
290
338
|
MaxCapacityBreachBehavior?: string;
|
|
339
|
+
/**
|
|
340
|
+
* The size of the capacity buffer to use when the forecast capacity is close to or exceeds the maximum capacity. The value is specified as a percentage relative to the forecast capacity. For example, if the buffer is 10, this means a 10 percent buffer, such that if the forecast capacity is 50, and the maximum capacity is 40, then the effective maximum capacity is 55.
|
|
341
|
+
Required if the ``MaxCapacityBreachBehavior`` property is set to ``IncreaseMaxCapacity``, and cannot be used otherwise.
|
|
342
|
+
*/
|
|
291
343
|
MaxCapacityBuffer?: number;
|
|
344
|
+
/**
|
|
345
|
+
* This structure includes the metrics and target utilization to use for predictive scaling.
|
|
346
|
+
This is an array, but we currently only support a single metric specification. That is, you can specify a target value and a single metric pair, or a target value and one scaling metric and one load metric.
|
|
347
|
+
*/
|
|
292
348
|
MetricSpecifications: PredictiveScalingMetricSpecification[];
|
|
349
|
+
/**
|
|
350
|
+
* The predictive scaling mode. Defaults to ``ForecastOnly`` if not specified.
|
|
351
|
+
*/
|
|
293
352
|
Mode?: string;
|
|
353
|
+
/**
|
|
354
|
+
* The amount of time, in seconds, that the start time can be advanced.
|
|
355
|
+
The value must be less than the forecast interval duration of 3600 seconds (60 minutes). Defaults to 300 seconds if not specified.
|
|
356
|
+
*/
|
|
294
357
|
SchedulingBufferTime?: number;
|
|
295
358
|
};
|
|
296
359
|
/**
|
|
297
360
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedLoadMetric`.
|
|
361
|
+
* Describes a load metric for a predictive scaling policy.
|
|
362
|
+
When returned in the output of ``DescribePolicies``, it indicates that a predictive scaling policy uses individually specified load and scaling metrics instead of a metric pair.
|
|
298
363
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedloadmetric.html}
|
|
299
364
|
*/
|
|
300
365
|
export type PredictiveScalingPredefinedLoadMetric = {
|
|
366
|
+
/**
|
|
367
|
+
* The metric type.
|
|
368
|
+
*/
|
|
301
369
|
PredefinedMetricType: string;
|
|
370
|
+
/**
|
|
371
|
+
* A label that uniquely identifies a target group.
|
|
372
|
+
*/
|
|
302
373
|
ResourceLabel?: string;
|
|
303
374
|
};
|
|
304
375
|
/**
|
|
305
376
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedMetricPair`.
|
|
377
|
+
* Represents a metric pair for a predictive scaling policy.
|
|
306
378
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedmetricpair.html}
|
|
307
379
|
*/
|
|
308
380
|
export type PredictiveScalingPredefinedMetricPair = {
|
|
381
|
+
/**
|
|
382
|
+
* Indicates which metrics to use. There are two different types of metrics for each metric type: one is a load metric and one is a scaling metric.
|
|
383
|
+
*/
|
|
309
384
|
PredefinedMetricType: string;
|
|
385
|
+
/**
|
|
386
|
+
* A label that uniquely identifies a specific target group from which to determine the total and average request count.
|
|
387
|
+
*/
|
|
310
388
|
ResourceLabel?: string;
|
|
311
389
|
};
|
|
312
390
|
/**
|
|
313
391
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedScalingMetric`.
|
|
392
|
+
* Describes a scaling metric for a predictive scaling policy.
|
|
393
|
+
When returned in the output of ``DescribePolicies``, it indicates that a predictive scaling policy uses individually specified load and scaling metrics instead of a metric pair.
|
|
314
394
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedscalingmetric.html}
|
|
315
395
|
*/
|
|
316
396
|
export type PredictiveScalingPredefinedScalingMetric = {
|
|
397
|
+
/**
|
|
398
|
+
* The metric type.
|
|
399
|
+
*/
|
|
317
400
|
PredefinedMetricType: string;
|
|
401
|
+
/**
|
|
402
|
+
* A label that uniquely identifies a specific target group from which to determine the average request count.
|
|
403
|
+
*/
|
|
318
404
|
ResourceLabel?: string;
|
|
319
405
|
};
|
|
320
406
|
/**
|
|
@@ -166,6 +166,30 @@ export type AnalysisRuleList = {
|
|
|
166
166
|
JoinColumns: string[];
|
|
167
167
|
ListColumns: string[];
|
|
168
168
|
};
|
|
169
|
+
/**
|
|
170
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.AthenaTableReference`.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html}
|
|
172
|
+
*/
|
|
173
|
+
export type AthenaTableReference = {
|
|
174
|
+
/**
|
|
175
|
+
* @maxLength `128`
|
|
176
|
+
*/
|
|
177
|
+
DatabaseName: string;
|
|
178
|
+
/**
|
|
179
|
+
* @minLength `8`
|
|
180
|
+
* @maxLength `1024`
|
|
181
|
+
*/
|
|
182
|
+
OutputLocation?: string;
|
|
183
|
+
/**
|
|
184
|
+
* @maxLength `128`
|
|
185
|
+
*/
|
|
186
|
+
TableName: string;
|
|
187
|
+
/**
|
|
188
|
+
* @minLength `1`
|
|
189
|
+
* @maxLength `128`
|
|
190
|
+
*/
|
|
191
|
+
WorkGroup: string;
|
|
192
|
+
};
|
|
169
193
|
/**
|
|
170
194
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicy`.
|
|
171
195
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicy.html}
|
|
@@ -237,12 +261,72 @@ export type JoinRequiredOption = "QUERY_RUNNER";
|
|
|
237
261
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-scalarfunctions.html}
|
|
238
262
|
*/
|
|
239
263
|
export type ScalarFunctions = "TRUNC" | "ABS" | "CEILING" | "FLOOR" | "LN" | "LOG" | "ROUND" | "SQRT" | "CAST" | "LOWER" | "RTRIM" | "UPPER" | "COALESCE" | "CONVERT" | "CURRENT_DATE" | "DATEADD" | "EXTRACT" | "GETDATE" | "SUBSTRING" | "TO_CHAR" | "TO_DATE" | "TO_NUMBER" | "TO_TIMESTAMP" | "TRIM";
|
|
264
|
+
/**
|
|
265
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableReference`.
|
|
266
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html}
|
|
267
|
+
*/
|
|
268
|
+
export type SnowflakeTableReference = {
|
|
269
|
+
/**
|
|
270
|
+
* @minLength `3`
|
|
271
|
+
* @maxLength `256`
|
|
272
|
+
*/
|
|
273
|
+
AccountIdentifier: string;
|
|
274
|
+
/**
|
|
275
|
+
* @minLength `1`
|
|
276
|
+
* @maxLength `256`
|
|
277
|
+
*/
|
|
278
|
+
DatabaseName: string;
|
|
279
|
+
/**
|
|
280
|
+
* @minLength `1`
|
|
281
|
+
* @maxLength `256`
|
|
282
|
+
*/
|
|
283
|
+
SchemaName: string;
|
|
284
|
+
/**
|
|
285
|
+
* @maxLength `256`
|
|
286
|
+
*/
|
|
287
|
+
SecretArn: string;
|
|
288
|
+
/**
|
|
289
|
+
* @minLength `1`
|
|
290
|
+
* @maxLength `256`
|
|
291
|
+
*/
|
|
292
|
+
TableName: string;
|
|
293
|
+
TableSchema: SnowflakeTableSchema;
|
|
294
|
+
};
|
|
295
|
+
/**
|
|
296
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableSchema`.
|
|
297
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html}
|
|
298
|
+
*/
|
|
299
|
+
export type SnowflakeTableSchema = {
|
|
300
|
+
/**
|
|
301
|
+
* @minLength `1`
|
|
302
|
+
* @maxLength `250`
|
|
303
|
+
*/
|
|
304
|
+
V1: SnowflakeTableSchemaV1[];
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableSchemaV1`.
|
|
308
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html}
|
|
309
|
+
*/
|
|
310
|
+
export type SnowflakeTableSchemaV1 = {
|
|
311
|
+
/**
|
|
312
|
+
* @maxLength `128`
|
|
313
|
+
*/
|
|
314
|
+
ColumnName: string;
|
|
315
|
+
/**
|
|
316
|
+
* @maxLength `255`
|
|
317
|
+
*/
|
|
318
|
+
ColumnType: string;
|
|
319
|
+
};
|
|
240
320
|
/**
|
|
241
321
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.TableReference`.
|
|
242
322
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html}
|
|
243
323
|
*/
|
|
244
324
|
export type TableReference = {
|
|
245
325
|
Glue: GlueTableReference;
|
|
326
|
+
} | {
|
|
327
|
+
Snowflake: SnowflakeTableReference;
|
|
328
|
+
} | {
|
|
329
|
+
Athena: AthenaTableReference;
|
|
246
330
|
};
|
|
247
331
|
/**
|
|
248
332
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.Tag`.
|
|
@@ -36,6 +36,10 @@ export type ConnectQueueProperties = {
|
|
|
36
36
|
* The outbound caller ID name, number, and outbound whisper flow.
|
|
37
37
|
*/
|
|
38
38
|
OutboundCallerConfig?: OutboundCallerConfig;
|
|
39
|
+
/**
|
|
40
|
+
* The outbound email address ID.
|
|
41
|
+
*/
|
|
42
|
+
OutboundEmailConfig?: OutboundEmailConfig;
|
|
39
43
|
/**
|
|
40
44
|
* The quick connects available to agents who are working the queue.
|
|
41
45
|
* @minLength `1`
|
|
@@ -92,6 +96,18 @@ export type OutboundCallerConfig = {
|
|
|
92
96
|
*/
|
|
93
97
|
OutboundFlowArn?: string;
|
|
94
98
|
};
|
|
99
|
+
/**
|
|
100
|
+
* Type definition for `AWS::Connect::Queue.OutboundEmailConfig`.
|
|
101
|
+
* The outbound email address ID.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-queue-outboundemailconfig.html}
|
|
103
|
+
*/
|
|
104
|
+
export type OutboundEmailConfig = {
|
|
105
|
+
/**
|
|
106
|
+
* The email address connect resource ID.
|
|
107
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*email-address/[-a-zA-Z0-9]*$`
|
|
108
|
+
*/
|
|
109
|
+
OutboundEmailAddressId?: string;
|
|
110
|
+
};
|
|
95
111
|
/**
|
|
96
112
|
* Type definition for `AWS::Connect::Queue.Tag`.
|
|
97
113
|
* A key-value pair to associate with a resource.
|
|
@@ -61,6 +61,11 @@ export type ConnectTaskTemplateProperties = {
|
|
|
61
61
|
* @maxLength `100`
|
|
62
62
|
*/
|
|
63
63
|
Name?: string;
|
|
64
|
+
/**
|
|
65
|
+
* The identifier of the contact flow.
|
|
66
|
+
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*contact-flow/[-a-zA-Z0-9]*$`
|
|
67
|
+
*/
|
|
68
|
+
SelfAssignContactFlowArn?: string;
|
|
64
69
|
/**
|
|
65
70
|
* The status of the task template
|
|
66
71
|
*/
|
|
@@ -42,8 +42,8 @@ export type DynamoDBTableProperties = {
|
|
|
42
42
|
*/
|
|
43
43
|
GlobalSecondaryIndexes?: GlobalSecondaryIndex[];
|
|
44
44
|
/**
|
|
45
|
-
* Specifies the properties of data being imported from the S3 bucket source to the table.
|
|
46
|
-
If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, or the ``
|
|
45
|
+
* Specifies the properties of data being imported from the S3 bucket source to the" table.
|
|
46
|
+
If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, the ``DeletionProtectionEnabled`` property, or the ``WarmThroughput`` property, the IAM entity creating/updating stack must have ``UpdateTable`` permission.
|
|
47
47
|
*/
|
|
48
48
|
ImportSourceSpecification?: ImportSourceSpecification;
|
|
49
49
|
/**
|
|
@@ -22,7 +22,7 @@ export type EC2LaunchTemplateProperties = {
|
|
|
22
22
|
LaunchTemplateName?: string;
|
|
23
23
|
/**
|
|
24
24
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
25
|
-
To specify the tags for resources that are created
|
|
25
|
+
To specify the tags for the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
|
26
26
|
*/
|
|
27
27
|
TagSpecifications?: LaunchTemplateTagSpecification[];
|
|
28
28
|
/**
|
|
@@ -86,14 +86,9 @@ export type BaselineEbsBandwidthMbps = {
|
|
|
86
86
|
};
|
|
87
87
|
/**
|
|
88
88
|
* Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
|
|
89
|
-
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application.
|
|
90
|
-
Currently, this parameter only supports CPU performance as a baseline performance factor. For example, specifying ``c6i`` would use the CPU performance of the ``c6i`` family as the baseline reference.
|
|
91
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
|
|
92
90
|
*/
|
|
93
91
|
export type BaselinePerformanceFactors = {
|
|
94
|
-
/**
|
|
95
|
-
* The CPU performance to consider, using an instance family as the baseline reference.
|
|
96
|
-
*/
|
|
97
92
|
Cpu?: Cpu;
|
|
98
93
|
};
|
|
99
94
|
/**
|
|
@@ -129,8 +124,7 @@ export type BlockDeviceMapping = {
|
|
|
129
124
|
export type CapacityReservationSpecification = {
|
|
130
125
|
/**
|
|
131
126
|
* Indicates the instance's Capacity Reservation preferences. Possible preferences include:
|
|
132
|
-
+ ``
|
|
133
|
-
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone, tenancy).
|
|
127
|
+
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).
|
|
134
128
|
+ ``none`` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
|
|
135
129
|
*/
|
|
136
130
|
CapacityReservationPreference?: string;
|
|
@@ -244,7 +238,7 @@ export type Ebs = {
|
|
|
244
238
|
*/
|
|
245
239
|
Iops?: number;
|
|
246
240
|
/**
|
|
247
|
-
*
|
|
241
|
+
* The ARN of the symmetric KMSlong (KMS) CMK used for encryption.
|
|
248
242
|
*/
|
|
249
243
|
KmsKeyId?: string;
|
|
250
244
|
/**
|
|
@@ -378,7 +372,7 @@ export type InstanceMarketOptions = {
|
|
|
378
372
|
|
|
379
373
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
380
374
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
381
|
-
For more information, see [
|
|
375
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
382
376
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
|
383
377
|
*/
|
|
384
378
|
export type InstanceRequirements = {
|
|
@@ -426,6 +420,7 @@ export type InstanceRequirements = {
|
|
|
426
420
|
* The accelerator types that must be on the instance type.
|
|
427
421
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
428
422
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
423
|
+
+ For instance types with inference accelerators, specify ``inference``.
|
|
429
424
|
|
|
430
425
|
Default: Any accelerator type
|
|
431
426
|
*/
|
|
@@ -452,9 +447,6 @@ export type InstanceRequirements = {
|
|
|
452
447
|
Default: No minimum or maximum limits
|
|
453
448
|
*/
|
|
454
449
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbps;
|
|
455
|
-
/**
|
|
456
|
-
* The baseline performance to consider, using an instance family as a baseline reference. The instance family establishes the lowest acceptable level of performance. Amazon EC2 uses this baseline to guide instance type selection, but there is no guarantee that the selected instance types will always exceed the baseline for every application. Currently, this parameter only supports CPU performance as a baseline performance factor. For more information, see [Performance protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html#ec2fleet-abis-performance-protection) in the *Amazon EC2 User Guide*.
|
|
457
|
-
*/
|
|
458
450
|
BaselinePerformanceFactors?: BaselinePerformanceFactors;
|
|
459
451
|
/**
|
|
460
452
|
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see [Burstable performance instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances.html).
|
|
@@ -470,7 +462,6 @@ export type InstanceRequirements = {
|
|
|
470
462
|
+ For instance types with Intel CPUs, specify ``intel``.
|
|
471
463
|
+ For instance types with AMD CPUs, specify ``amd``.
|
|
472
464
|
+ For instance types with AWS CPUs, specify ``amazon-web-services``.
|
|
473
|
-
+ For instance types with Apple CPUs, specify ``apple``.
|
|
474
465
|
|
|
475
466
|
Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template.
|
|
476
467
|
Default: Any manufacturer
|
|
@@ -645,8 +636,7 @@ export type LaunchTemplateData = {
|
|
|
645
636
|
*/
|
|
646
637
|
ElasticGpuSpecifications?: ElasticGpuSpecification[];
|
|
647
638
|
/**
|
|
648
|
-
*
|
|
649
|
-
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
639
|
+
* An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
650
640
|
You cannot specify accelerators from different generations in the same request.
|
|
651
641
|
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
652
642
|
*/
|
|
@@ -694,7 +684,7 @@ export type LaunchTemplateData = {
|
|
|
694
684
|
|
|
695
685
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
696
686
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
697
|
-
For more information, see [
|
|
687
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
698
688
|
*/
|
|
699
689
|
InstanceRequirements?: InstanceRequirements;
|
|
700
690
|
/**
|
|
@@ -732,7 +722,6 @@ export type LaunchTemplateData = {
|
|
|
732
722
|
* The network interfaces for the instance.
|
|
733
723
|
*/
|
|
734
724
|
NetworkInterfaces?: NetworkInterface[];
|
|
735
|
-
NetworkPerformanceOptions?: unknown;
|
|
736
725
|
/**
|
|
737
726
|
* The placement for the instance.
|
|
738
727
|
*/
|
|
@@ -757,7 +746,8 @@ export type LaunchTemplateData = {
|
|
|
757
746
|
*/
|
|
758
747
|
SecurityGroups?: string[];
|
|
759
748
|
/**
|
|
760
|
-
* The tags to apply to resources that are created during instance launch.
|
|
749
|
+
* The tags to apply to the resources that are created during instance launch.
|
|
750
|
+
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
761
751
|
To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
|
762
752
|
*/
|
|
763
753
|
TagSpecifications?: TagSpecification[];
|
|
@@ -787,7 +777,6 @@ export type LaunchTemplateElasticInferenceAccelerator = {
|
|
|
787
777
|
/**
|
|
788
778
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
|
789
779
|
* Specifies the tags to apply to the launch template during creation.
|
|
790
|
-
To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
|
791
780
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
|
792
781
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
|
793
782
|
*/
|
|
@@ -961,10 +950,9 @@ export type NetworkInterface = {
|
|
|
961
950
|
*/
|
|
962
951
|
Groups?: string[];
|
|
963
952
|
/**
|
|
964
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa
|
|
953
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
965
954
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
966
|
-
|
|
967
|
-
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
955
|
+
Valid values: ``interface`` | ``efa``
|
|
968
956
|
*/
|
|
969
957
|
InterfaceType?: string;
|
|
970
958
|
/**
|
|
@@ -1119,6 +1107,9 @@ export type PrivateIpAdd = {
|
|
|
1119
1107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
|
|
1120
1108
|
*/
|
|
1121
1109
|
export type Reference = {
|
|
1110
|
+
/**
|
|
1111
|
+
* The instance family to refer. Ensure that you specify the correct family name. For example, C6i and C6g are valid values, but C6 is not.
|
|
1112
|
+
*/
|
|
1122
1113
|
InstanceFamily?: string;
|
|
1123
1114
|
};
|
|
1124
1115
|
/**
|
|
@@ -1172,7 +1163,7 @@ export type Tag = {
|
|
|
1172
1163
|
};
|
|
1173
1164
|
/**
|
|
1174
1165
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
|
1175
|
-
* Specifies the tags to apply to
|
|
1166
|
+
* Specifies the tags to apply to a resource when the resource is created for the launch template.
|
|
1176
1167
|
``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
1177
1168
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
|
1178
1169
|
*/
|
|
@@ -29,6 +29,7 @@ export type ECSTaskDefinitionProperties = {
|
|
|
29
29
|
This option requires Linux platform ``1.4.0`` or later.
|
|
30
30
|
*/
|
|
31
31
|
Cpu?: string;
|
|
32
|
+
EnableFaultInjection?: boolean;
|
|
32
33
|
/**
|
|
33
34
|
* The ephemeral storage settings to use for tasks run with the task definition.
|
|
34
35
|
*/
|
|
@@ -622,7 +623,7 @@ export type HealthCheck = {
|
|
|
622
623
|
``[ "CMD-SHELL", "curl -f http://localhost/ || exit 1" ]``
|
|
623
624
|
You don't include the double quotes and brackets when you use the AWS Management Console.
|
|
624
625
|
``CMD-SHELL, curl -f http://localhost/ || exit 1``
|
|
625
|
-
An exit code of 0 indicates success, and non-zero exit code indicates failure. For more information, see ``HealthCheck`` in the docker container create command
|
|
626
|
+
An exit code of 0 indicates success, and non-zero exit code indicates failure. For more information, see ``HealthCheck`` in the docker container create command.
|
|
626
627
|
*/
|
|
627
628
|
Command?: string[];
|
|
628
629
|
/**
|
|
@@ -871,9 +872,8 @@ export type PortMapping = {
|
|
|
871
872
|
*/
|
|
872
873
|
HostPort?: number;
|
|
873
874
|
/**
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
*/
|
|
875
|
+
* The name that's used for the port mapping. This parameter is the name that you use in the ``serviceConnectConfiguration`` and the ``vpcLatticeConfigurations`` of a service. The name can include up to 64 characters. The characters can include lowercase letters, numbers, underscores (_), and hyphens (-). The name can't start with a hyphen.
|
|
876
|
+
*/
|
|
877
877
|
Name?: string;
|
|
878
878
|
/**
|
|
879
879
|
* The protocol used for the port mapping. Valid values are ``tcp`` and ``udp``. The default is ``tcp``. ``protocol`` is immutable in a Service Connect service. Updating this field requires a service deletion and redeployment.
|
|
@@ -56,6 +56,10 @@ export type EMRServerlessApplicationProperties = {
|
|
|
56
56
|
* Runtime configuration for batch and interactive JobRun.
|
|
57
57
|
*/
|
|
58
58
|
RuntimeConfiguration?: ConfigurationObject[];
|
|
59
|
+
/**
|
|
60
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
|
61
|
+
*/
|
|
62
|
+
SchedulerConfiguration?: SchedulerConfiguration;
|
|
59
63
|
/**
|
|
60
64
|
* Tag map with key and value
|
|
61
65
|
*/
|
|
@@ -342,6 +346,21 @@ export type S3MonitoringConfiguration = {
|
|
|
342
346
|
*/
|
|
343
347
|
LogUri?: string;
|
|
344
348
|
};
|
|
349
|
+
/**
|
|
350
|
+
* Type definition for `AWS::EMRServerless::Application.SchedulerConfiguration`.
|
|
351
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
|
352
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-schedulerconfiguration.html}
|
|
353
|
+
*/
|
|
354
|
+
export type SchedulerConfiguration = {
|
|
355
|
+
/**
|
|
356
|
+
* The maximum concurrent job runs on this application. If scheduler configuration is enabled on your application, the default value is 15. The valid range is 1 to 1000.
|
|
357
|
+
*/
|
|
358
|
+
MaxConcurrentRuns?: number;
|
|
359
|
+
/**
|
|
360
|
+
* The maximum duration in minutes for the job in QUEUED state. If scheduler configuration is enabled on your application, the default value is 360 minutes (6 hours). The valid range is from 15 to 720.
|
|
361
|
+
*/
|
|
362
|
+
QueueTimeoutMinutes?: number;
|
|
363
|
+
};
|
|
345
364
|
/**
|
|
346
365
|
* Type definition for `AWS::EMRServerless::Application.Tag`.
|
|
347
366
|
* A key-value pair to associate with a resource.
|