@awboost/cfntypes 0.100.67 → 0.100.69
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/resources.generated.d.ts +1044 -65
- package/lib/resources.generated.js +22 -0
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
@@ -6890,6 +6890,9 @@ export type ApplicationAutoScalingScalingPolicyProps = {
|
|
6890
6890
|
``StepScaling``—Not supported for DynamoDB, Amazon Comprehend, Lambda, Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
|
6891
6891
|
*/
|
6892
6892
|
PolicyType: string;
|
6893
|
+
/**
|
6894
|
+
* The predictive scaling policy configuration.
|
6895
|
+
*/
|
6893
6896
|
PredictiveScalingPolicyConfiguration?: ApplicationAutoScalingScalingPolicyPredictiveScalingPolicyConfiguration;
|
6894
6897
|
/**
|
6895
6898
|
* The identifier of the resource associated with the scaling policy. This string consists of the resource type and unique identifier.
|
@@ -7046,13 +7049,18 @@ export type ApplicationAutoScalingScalingPolicyPredefinedMetricSpecification = {
|
|
7046
7049
|
};
|
7047
7050
|
/**
|
7048
7051
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedCapacityMetric`.
|
7052
|
+
* Represents a CloudWatch metric of your choosing for a predictive scaling policy.
|
7049
7053
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedcapacitymetric.html}
|
7050
7054
|
*/
|
7051
7055
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedCapacityMetric = {
|
7056
|
+
/**
|
7057
|
+
* One or more metric data queries to provide data points for a metric specification.
|
7058
|
+
*/
|
7052
7059
|
MetricDataQueries: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery[];
|
7053
7060
|
};
|
7054
7061
|
/**
|
7055
7062
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedLoadMetric`.
|
7063
|
+
* The customized load metric specification.
|
7056
7064
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedloadmetric.html}
|
7057
7065
|
*/
|
7058
7066
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedLoadMetric = {
|
@@ -7060,18 +7068,23 @@ export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedLoadMe
|
|
7060
7068
|
};
|
7061
7069
|
/**
|
7062
7070
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingCustomizedScalingMetric`.
|
7071
|
+
* One or more metric data queries to provide data points for a metric specification.
|
7063
7072
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingcustomizedscalingmetric.html}
|
7064
7073
|
*/
|
7065
7074
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedScalingMetric = {
|
7075
|
+
/**
|
7076
|
+
* One or more metric data queries to provide data points for a metric specification.
|
7077
|
+
*/
|
7066
7078
|
MetricDataQueries: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery[];
|
7067
7079
|
};
|
7068
7080
|
/**
|
7069
7081
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetric`.
|
7082
|
+
* Describes the scaling metric.
|
7070
7083
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetric.html}
|
7071
7084
|
*/
|
7072
7085
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetric = {
|
7073
7086
|
/**
|
7074
|
-
*
|
7087
|
+
* Describes the dimensions of the metric.
|
7075
7088
|
*/
|
7076
7089
|
Dimensions?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDimension[];
|
7077
7090
|
/**
|
@@ -7085,15 +7098,17 @@ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetric = {
|
|
7085
7098
|
};
|
7086
7099
|
/**
|
7087
7100
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDataQuery`.
|
7101
|
+
* 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.
|
7088
7102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdataquery.html}
|
7089
7103
|
*/
|
7090
7104
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery = {
|
7091
7105
|
/**
|
7092
|
-
* The math expression to perform on the returned data, if this object is performing a math expression.
|
7106
|
+
* 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.
|
7107
|
+
Conditional: Within each ``MetricDataQuery`` object, you must specify either ``Expression`` or ``MetricStat``, but not both.
|
7093
7108
|
*/
|
7094
7109
|
Expression?: string;
|
7095
7110
|
/**
|
7096
|
-
* A short name that identifies the object's results in the response.
|
7111
|
+
* 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.
|
7097
7112
|
*/
|
7098
7113
|
Id?: string;
|
7099
7114
|
/**
|
@@ -7102,15 +7117,19 @@ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDataQuery
|
|
7102
7117
|
Label?: string;
|
7103
7118
|
/**
|
7104
7119
|
* Information about the metric data to return.
|
7120
|
+
Conditional: Within each ``MetricDataQuery`` object, you must specify either ``Expression`` or ``MetricStat``, but not both.
|
7105
7121
|
*/
|
7106
7122
|
MetricStat?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricStat;
|
7107
7123
|
/**
|
7108
7124
|
* Indicates whether to return the timestamps and raw data values of this metric.
|
7125
|
+
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.
|
7126
|
+
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``).
|
7109
7127
|
*/
|
7110
7128
|
ReturnData?: boolean;
|
7111
7129
|
};
|
7112
7130
|
/**
|
7113
7131
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricDimension`.
|
7132
|
+
* Describes the dimension of a metric.
|
7114
7133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricdimension.html}
|
7115
7134
|
*/
|
7116
7135
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDimension = {
|
@@ -7125,68 +7144,135 @@ export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricDimension
|
|
7125
7144
|
};
|
7126
7145
|
/**
|
7127
7146
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricSpecification`.
|
7147
|
+
* This structure specifies the metrics and target utilization settings for a predictive scaling policy.
|
7148
|
+
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.
|
7128
7149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricspecification.html}
|
7129
7150
|
*/
|
7130
7151
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricSpecification = {
|
7152
|
+
/**
|
7153
|
+
* The customized capacity metric specification.
|
7154
|
+
*/
|
7131
7155
|
CustomizedCapacityMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedCapacityMetric;
|
7156
|
+
/**
|
7157
|
+
* The customized load metric specification.
|
7158
|
+
*/
|
7132
7159
|
CustomizedLoadMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedLoadMetric;
|
7160
|
+
/**
|
7161
|
+
* The customized scaling metric specification.
|
7162
|
+
*/
|
7133
7163
|
CustomizedScalingMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingCustomizedScalingMetric;
|
7164
|
+
/**
|
7165
|
+
* The predefined load metric specification.
|
7166
|
+
*/
|
7134
7167
|
PredefinedLoadMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedLoadMetric;
|
7168
|
+
/**
|
7169
|
+
* The predefined metric pair specification that determines the appropriate scaling metric and load metric to use.
|
7170
|
+
*/
|
7135
7171
|
PredefinedMetricPairSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedMetricPair;
|
7172
|
+
/**
|
7173
|
+
* The predefined scaling metric specification.
|
7174
|
+
*/
|
7136
7175
|
PredefinedScalingMetricSpecification?: ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedScalingMetric;
|
7176
|
+
/**
|
7177
|
+
* Specifies the target utilization.
|
7178
|
+
*/
|
7137
7179
|
TargetValue: number;
|
7138
7180
|
};
|
7139
7181
|
/**
|
7140
7182
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingMetricStat`.
|
7183
|
+
* This structure defines the CloudWatch metric to return, along with the statistic and unit.
|
7141
7184
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingmetricstat.html}
|
7142
7185
|
*/
|
7143
7186
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingMetricStat = {
|
7144
7187
|
/**
|
7145
|
-
* The CloudWatch metric to return, including the metric name, namespace, and dimensions.
|
7188
|
+
* 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).
|
7146
7189
|
*/
|
7147
7190
|
Metric?: ApplicationAutoScalingScalingPolicyPredictiveScalingMetric;
|
7148
7191
|
/**
|
7149
|
-
|
7150
|
-
|
7192
|
+
* 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*.
|
7193
|
+
The most commonly used metrics for predictive scaling are ``Average`` and ``Sum``.
|
7194
|
+
*/
|
7151
7195
|
Stat?: string;
|
7152
7196
|
/**
|
7153
|
-
* The unit to use for the returned data points.
|
7197
|
+
* 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*.
|
7154
7198
|
*/
|
7155
7199
|
Unit?: string;
|
7156
7200
|
};
|
7157
7201
|
/**
|
7158
7202
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPolicyConfiguration`.
|
7203
|
+
* Represents a predictive scaling policy configuration.
|
7159
7204
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpolicyconfiguration.html}
|
7160
7205
|
*/
|
7161
7206
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingPolicyConfiguration = {
|
7207
|
+
/**
|
7208
|
+
* Defines the behavior that should be applied if the forecast capacity approaches or exceeds the maximum capacity. Defaults to ``HonorMaxCapacity`` if not specified.
|
7209
|
+
*/
|
7162
7210
|
MaxCapacityBreachBehavior?: string;
|
7211
|
+
/**
|
7212
|
+
* 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.
|
7213
|
+
Required if the ``MaxCapacityBreachBehavior`` property is set to ``IncreaseMaxCapacity``, and cannot be used otherwise.
|
7214
|
+
*/
|
7163
7215
|
MaxCapacityBuffer?: number;
|
7216
|
+
/**
|
7217
|
+
* This structure includes the metrics and target utilization to use for predictive scaling.
|
7218
|
+
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.
|
7219
|
+
*/
|
7164
7220
|
MetricSpecifications: ApplicationAutoScalingScalingPolicyPredictiveScalingMetricSpecification[];
|
7221
|
+
/**
|
7222
|
+
* The predictive scaling mode. Defaults to ``ForecastOnly`` if not specified.
|
7223
|
+
*/
|
7165
7224
|
Mode?: string;
|
7225
|
+
/**
|
7226
|
+
* The amount of time, in seconds, that the start time can be advanced.
|
7227
|
+
The value must be less than the forecast interval duration of 3600 seconds (60 minutes). Defaults to 300 seconds if not specified.
|
7228
|
+
*/
|
7166
7229
|
SchedulingBufferTime?: number;
|
7167
7230
|
};
|
7168
7231
|
/**
|
7169
7232
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedLoadMetric`.
|
7233
|
+
* Describes a load metric for a predictive scaling policy.
|
7234
|
+
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.
|
7170
7235
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedloadmetric.html}
|
7171
7236
|
*/
|
7172
7237
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedLoadMetric = {
|
7238
|
+
/**
|
7239
|
+
* The metric type.
|
7240
|
+
*/
|
7173
7241
|
PredefinedMetricType: string;
|
7242
|
+
/**
|
7243
|
+
* A label that uniquely identifies a target group.
|
7244
|
+
*/
|
7174
7245
|
ResourceLabel?: string;
|
7175
7246
|
};
|
7176
7247
|
/**
|
7177
7248
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedMetricPair`.
|
7249
|
+
* Represents a metric pair for a predictive scaling policy.
|
7178
7250
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedmetricpair.html}
|
7179
7251
|
*/
|
7180
7252
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedMetricPair = {
|
7253
|
+
/**
|
7254
|
+
* 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.
|
7255
|
+
*/
|
7181
7256
|
PredefinedMetricType: string;
|
7257
|
+
/**
|
7258
|
+
* A label that uniquely identifies a specific target group from which to determine the total and average request count.
|
7259
|
+
*/
|
7182
7260
|
ResourceLabel?: string;
|
7183
7261
|
};
|
7184
7262
|
/**
|
7185
7263
|
* Type definition for `AWS::ApplicationAutoScaling::ScalingPolicy.PredictiveScalingPredefinedScalingMetric`.
|
7264
|
+
* Describes a scaling metric for a predictive scaling policy.
|
7265
|
+
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.
|
7186
7266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predictivescalingpredefinedscalingmetric.html}
|
7187
7267
|
*/
|
7188
7268
|
export type ApplicationAutoScalingScalingPolicyPredictiveScalingPredefinedScalingMetric = {
|
7269
|
+
/**
|
7270
|
+
* The metric type.
|
7271
|
+
*/
|
7189
7272
|
PredefinedMetricType: string;
|
7273
|
+
/**
|
7274
|
+
* A label that uniquely identifies a specific target group from which to determine the average request count.
|
7275
|
+
*/
|
7190
7276
|
ResourceLabel?: string;
|
7191
7277
|
};
|
7192
7278
|
/**
|
@@ -23154,6 +23240,30 @@ export type CleanRoomsConfiguredTableAnalysisRuleList = {
|
|
23154
23240
|
JoinColumns: string[];
|
23155
23241
|
ListColumns: string[];
|
23156
23242
|
};
|
23243
|
+
/**
|
23244
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.AthenaTableReference`.
|
23245
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-athenatablereference.html}
|
23246
|
+
*/
|
23247
|
+
export type CleanRoomsConfiguredTableAthenaTableReference = {
|
23248
|
+
/**
|
23249
|
+
* @maxLength `128`
|
23250
|
+
*/
|
23251
|
+
DatabaseName: string;
|
23252
|
+
/**
|
23253
|
+
* @minLength `8`
|
23254
|
+
* @maxLength `1024`
|
23255
|
+
*/
|
23256
|
+
OutputLocation?: string;
|
23257
|
+
/**
|
23258
|
+
* @maxLength `128`
|
23259
|
+
*/
|
23260
|
+
TableName: string;
|
23261
|
+
/**
|
23262
|
+
* @minLength `1`
|
23263
|
+
* @maxLength `128`
|
23264
|
+
*/
|
23265
|
+
WorkGroup: string;
|
23266
|
+
};
|
23157
23267
|
/**
|
23158
23268
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.ConfiguredTableAnalysisRulePolicy`.
|
23159
23269
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-configuredtableanalysisrulepolicy.html}
|
@@ -23225,12 +23335,72 @@ export type CleanRoomsConfiguredTableJoinRequiredOption = "QUERY_RUNNER";
|
|
23225
23335
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-scalarfunctions.html}
|
23226
23336
|
*/
|
23227
23337
|
export type CleanRoomsConfiguredTableScalarFunctions = "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";
|
23338
|
+
/**
|
23339
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableReference`.
|
23340
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketablereference.html}
|
23341
|
+
*/
|
23342
|
+
export type CleanRoomsConfiguredTableSnowflakeTableReference = {
|
23343
|
+
/**
|
23344
|
+
* @minLength `3`
|
23345
|
+
* @maxLength `256`
|
23346
|
+
*/
|
23347
|
+
AccountIdentifier: string;
|
23348
|
+
/**
|
23349
|
+
* @minLength `1`
|
23350
|
+
* @maxLength `256`
|
23351
|
+
*/
|
23352
|
+
DatabaseName: string;
|
23353
|
+
/**
|
23354
|
+
* @minLength `1`
|
23355
|
+
* @maxLength `256`
|
23356
|
+
*/
|
23357
|
+
SchemaName: string;
|
23358
|
+
/**
|
23359
|
+
* @maxLength `256`
|
23360
|
+
*/
|
23361
|
+
SecretArn: string;
|
23362
|
+
/**
|
23363
|
+
* @minLength `1`
|
23364
|
+
* @maxLength `256`
|
23365
|
+
*/
|
23366
|
+
TableName: string;
|
23367
|
+
TableSchema: CleanRoomsConfiguredTableSnowflakeTableSchema;
|
23368
|
+
};
|
23369
|
+
/**
|
23370
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableSchema`.
|
23371
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschema.html}
|
23372
|
+
*/
|
23373
|
+
export type CleanRoomsConfiguredTableSnowflakeTableSchema = {
|
23374
|
+
/**
|
23375
|
+
* @minLength `1`
|
23376
|
+
* @maxLength `250`
|
23377
|
+
*/
|
23378
|
+
V1: CleanRoomsConfiguredTableSnowflakeTableSchemaV1[];
|
23379
|
+
};
|
23380
|
+
/**
|
23381
|
+
* Type definition for `AWS::CleanRooms::ConfiguredTable.SnowflakeTableSchemaV1`.
|
23382
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-snowflaketableschemav1.html}
|
23383
|
+
*/
|
23384
|
+
export type CleanRoomsConfiguredTableSnowflakeTableSchemaV1 = {
|
23385
|
+
/**
|
23386
|
+
* @maxLength `128`
|
23387
|
+
*/
|
23388
|
+
ColumnName: string;
|
23389
|
+
/**
|
23390
|
+
* @maxLength `255`
|
23391
|
+
*/
|
23392
|
+
ColumnType: string;
|
23393
|
+
};
|
23228
23394
|
/**
|
23229
23395
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.TableReference`.
|
23230
23396
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-configuredtable-tablereference.html}
|
23231
23397
|
*/
|
23232
23398
|
export type CleanRoomsConfiguredTableTableReference = {
|
23233
23399
|
Glue: CleanRoomsConfiguredTableGlueTableReference;
|
23400
|
+
} | {
|
23401
|
+
Snowflake: CleanRoomsConfiguredTableSnowflakeTableReference;
|
23402
|
+
} | {
|
23403
|
+
Athena: CleanRoomsConfiguredTableAthenaTableReference;
|
23234
23404
|
};
|
23235
23405
|
/**
|
23236
23406
|
* Type definition for `AWS::CleanRooms::ConfiguredTable.Tag`.
|
@@ -23297,7 +23467,7 @@ export type CleanRoomsConfiguredTableAssociationProps = {
|
|
23297
23467
|
*/
|
23298
23468
|
export type CleanRoomsConfiguredTableAssociationAttributes = {
|
23299
23469
|
/**
|
23300
|
-
* @maxLength `
|
23470
|
+
* @maxLength `256`
|
23301
23471
|
*/
|
23302
23472
|
Arn: string;
|
23303
23473
|
/**
|
@@ -34218,6 +34388,10 @@ export type ConnectQueueProps = {
|
|
34218
34388
|
* The outbound caller ID name, number, and outbound whisper flow.
|
34219
34389
|
*/
|
34220
34390
|
OutboundCallerConfig?: ConnectQueueOutboundCallerConfig;
|
34391
|
+
/**
|
34392
|
+
* The outbound email address ID.
|
34393
|
+
*/
|
34394
|
+
OutboundEmailConfig?: ConnectQueueOutboundEmailConfig;
|
34221
34395
|
/**
|
34222
34396
|
* The quick connects available to agents who are working the queue.
|
34223
34397
|
* @minLength `1`
|
@@ -34274,6 +34448,18 @@ export type ConnectQueueOutboundCallerConfig = {
|
|
34274
34448
|
*/
|
34275
34449
|
OutboundFlowArn?: string;
|
34276
34450
|
};
|
34451
|
+
/**
|
34452
|
+
* Type definition for `AWS::Connect::Queue.OutboundEmailConfig`.
|
34453
|
+
* The outbound email address ID.
|
34454
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-queue-outboundemailconfig.html}
|
34455
|
+
*/
|
34456
|
+
export type ConnectQueueOutboundEmailConfig = {
|
34457
|
+
/**
|
34458
|
+
* The email address connect resource ID.
|
34459
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*email-address/[-a-zA-Z0-9]*$`
|
34460
|
+
*/
|
34461
|
+
OutboundEmailAddressId?: string;
|
34462
|
+
};
|
34277
34463
|
/**
|
34278
34464
|
* Type definition for `AWS::Connect::Queue.Tag`.
|
34279
34465
|
* A key-value pair to associate with a resource.
|
@@ -35129,6 +35315,11 @@ export type ConnectTaskTemplateProps = {
|
|
35129
35315
|
* @maxLength `100`
|
35130
35316
|
*/
|
35131
35317
|
Name?: string;
|
35318
|
+
/**
|
35319
|
+
* The identifier of the contact flow.
|
35320
|
+
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*contact-flow/[-a-zA-Z0-9]*$`
|
35321
|
+
*/
|
35322
|
+
SelfAssignContactFlowArn?: string;
|
35132
35323
|
/**
|
35133
35324
|
* The status of the task template
|
35134
35325
|
*/
|
@@ -45790,8 +45981,8 @@ export type DynamoDBTableProps = {
|
|
45790
45981
|
*/
|
45791
45982
|
GlobalSecondaryIndexes?: DynamoDBTableGlobalSecondaryIndex[];
|
45792
45983
|
/**
|
45793
|
-
* Specifies the properties of data being imported from the S3 bucket source to the table.
|
45794
|
-
If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, or the ``
|
45984
|
+
* Specifies the properties of data being imported from the S3 bucket source to the" table.
|
45985
|
+
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.
|
45795
45986
|
*/
|
45796
45987
|
ImportSourceSpecification?: DynamoDBTableImportSourceSpecification;
|
45797
45988
|
/**
|
@@ -48404,7 +48595,7 @@ export type EC2LaunchTemplateProps = {
|
|
48404
48595
|
LaunchTemplateName?: string;
|
48405
48596
|
/**
|
48406
48597
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
48407
|
-
To specify the tags for resources that are created
|
48598
|
+
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).
|
48408
48599
|
*/
|
48409
48600
|
TagSpecifications?: EC2LaunchTemplateLaunchTemplateTagSpecification[];
|
48410
48601
|
/**
|
@@ -48468,14 +48659,9 @@ export type EC2LaunchTemplateBaselineEbsBandwidthMbps = {
|
|
48468
48659
|
};
|
48469
48660
|
/**
|
48470
48661
|
* Type definition for `AWS::EC2::LaunchTemplate.BaselinePerformanceFactors`.
|
48471
|
-
* 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.
|
48472
|
-
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.
|
48473
48662
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-baselineperformancefactors.html}
|
48474
48663
|
*/
|
48475
48664
|
export type EC2LaunchTemplateBaselinePerformanceFactors = {
|
48476
|
-
/**
|
48477
|
-
* The CPU performance to consider, using an instance family as the baseline reference.
|
48478
|
-
*/
|
48479
48665
|
Cpu?: EC2LaunchTemplateCpu;
|
48480
48666
|
};
|
48481
48667
|
/**
|
@@ -48511,8 +48697,7 @@ export type EC2LaunchTemplateBlockDeviceMapping = {
|
|
48511
48697
|
export type EC2LaunchTemplateCapacityReservationSpecification = {
|
48512
48698
|
/**
|
48513
48699
|
* Indicates the instance's Capacity Reservation preferences. Possible preferences include:
|
48514
|
-
+ ``
|
48515
|
-
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone, tenancy).
|
48700
|
+
+ ``open`` - The instance can run in any ``open`` Capacity Reservation that has matching attributes (instance type, platform, Availability Zone).
|
48516
48701
|
+ ``none`` - The instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
|
48517
48702
|
*/
|
48518
48703
|
CapacityReservationPreference?: string;
|
@@ -48626,7 +48811,7 @@ export type EC2LaunchTemplateEbs = {
|
|
48626
48811
|
*/
|
48627
48812
|
Iops?: number;
|
48628
48813
|
/**
|
48629
|
-
*
|
48814
|
+
* The ARN of the symmetric KMSlong (KMS) CMK used for encryption.
|
48630
48815
|
*/
|
48631
48816
|
KmsKeyId?: string;
|
48632
48817
|
/**
|
@@ -48760,7 +48945,7 @@ export type EC2LaunchTemplateInstanceMarketOptions = {
|
|
48760
48945
|
|
48761
48946
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
48762
48947
|
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``.
|
48763
|
-
For more information, see [
|
48948
|
+
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*.
|
48764
48949
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
48765
48950
|
*/
|
48766
48951
|
export type EC2LaunchTemplateInstanceRequirements = {
|
@@ -48808,6 +48993,7 @@ export type EC2LaunchTemplateInstanceRequirements = {
|
|
48808
48993
|
* The accelerator types that must be on the instance type.
|
48809
48994
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
48810
48995
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
48996
|
+
+ For instance types with inference accelerators, specify ``inference``.
|
48811
48997
|
|
48812
48998
|
Default: Any accelerator type
|
48813
48999
|
*/
|
@@ -48834,9 +49020,6 @@ export type EC2LaunchTemplateInstanceRequirements = {
|
|
48834
49020
|
Default: No minimum or maximum limits
|
48835
49021
|
*/
|
48836
49022
|
BaselineEbsBandwidthMbps?: EC2LaunchTemplateBaselineEbsBandwidthMbps;
|
48837
|
-
/**
|
48838
|
-
* 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*.
|
48839
|
-
*/
|
48840
49023
|
BaselinePerformanceFactors?: EC2LaunchTemplateBaselinePerformanceFactors;
|
48841
49024
|
/**
|
48842
49025
|
* 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).
|
@@ -48852,7 +49035,6 @@ export type EC2LaunchTemplateInstanceRequirements = {
|
|
48852
49035
|
+ For instance types with Intel CPUs, specify ``intel``.
|
48853
49036
|
+ For instance types with AMD CPUs, specify ``amd``.
|
48854
49037
|
+ For instance types with AWS CPUs, specify ``amazon-web-services``.
|
48855
|
-
+ For instance types with Apple CPUs, specify ``apple``.
|
48856
49038
|
|
48857
49039
|
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.
|
48858
49040
|
Default: Any manufacturer
|
@@ -49027,8 +49209,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49027
49209
|
*/
|
49028
49210
|
ElasticGpuSpecifications?: EC2LaunchTemplateElasticGpuSpecification[];
|
49029
49211
|
/**
|
49030
|
-
*
|
49031
|
-
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.
|
49212
|
+
* 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.
|
49032
49213
|
You cannot specify accelerators from different generations in the same request.
|
49033
49214
|
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.
|
49034
49215
|
*/
|
@@ -49076,7 +49257,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49076
49257
|
|
49077
49258
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
49078
49259
|
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``.
|
49079
|
-
For more information, see [
|
49260
|
+
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*.
|
49080
49261
|
*/
|
49081
49262
|
InstanceRequirements?: EC2LaunchTemplateInstanceRequirements;
|
49082
49263
|
/**
|
@@ -49114,7 +49295,6 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49114
49295
|
* The network interfaces for the instance.
|
49115
49296
|
*/
|
49116
49297
|
NetworkInterfaces?: EC2LaunchTemplateNetworkInterface[];
|
49117
|
-
NetworkPerformanceOptions?: unknown;
|
49118
49298
|
/**
|
49119
49299
|
* The placement for the instance.
|
49120
49300
|
*/
|
@@ -49139,7 +49319,8 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49139
49319
|
*/
|
49140
49320
|
SecurityGroups?: string[];
|
49141
49321
|
/**
|
49142
|
-
* The tags to apply to resources that are created during instance launch.
|
49322
|
+
* The tags to apply to the resources that are created during instance launch.
|
49323
|
+
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
49143
49324
|
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).
|
49144
49325
|
*/
|
49145
49326
|
TagSpecifications?: EC2LaunchTemplateTagSpecification[];
|
@@ -49169,7 +49350,6 @@ export type EC2LaunchTemplateLaunchTemplateElasticInferenceAccelerator = {
|
|
49169
49350
|
/**
|
49170
49351
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
49171
49352
|
* Specifies the tags to apply to the launch template during creation.
|
49172
|
-
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).
|
49173
49353
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
49174
49354
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
49175
49355
|
*/
|
@@ -49343,10 +49523,9 @@ export type EC2LaunchTemplateNetworkInterface = {
|
|
49343
49523
|
*/
|
49344
49524
|
Groups?: string[];
|
49345
49525
|
/**
|
49346
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa
|
49526
|
+
* 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*.
|
49347
49527
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
49348
|
-
|
49349
|
-
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
49528
|
+
Valid values: ``interface`` | ``efa``
|
49350
49529
|
*/
|
49351
49530
|
InterfaceType?: string;
|
49352
49531
|
/**
|
@@ -49501,6 +49680,9 @@ export type EC2LaunchTemplatePrivateIpAdd = {
|
|
49501
49680
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-reference.html}
|
49502
49681
|
*/
|
49503
49682
|
export type EC2LaunchTemplateReference = {
|
49683
|
+
/**
|
49684
|
+
* 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.
|
49685
|
+
*/
|
49504
49686
|
InstanceFamily?: string;
|
49505
49687
|
};
|
49506
49688
|
/**
|
@@ -49554,7 +49736,7 @@ export type EC2LaunchTemplateTag = {
|
|
49554
49736
|
};
|
49555
49737
|
/**
|
49556
49738
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
49557
|
-
* Specifies the tags to apply to
|
49739
|
+
* Specifies the tags to apply to a resource when the resource is created for the launch template.
|
49558
49740
|
``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).
|
49559
49741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
49560
49742
|
*/
|
@@ -56264,6 +56446,7 @@ export type ECSTaskDefinitionProps = {
|
|
56264
56446
|
This option requires Linux platform ``1.4.0`` or later.
|
56265
56447
|
*/
|
56266
56448
|
Cpu?: string;
|
56449
|
+
EnableFaultInjection?: boolean;
|
56267
56450
|
/**
|
56268
56451
|
* The ephemeral storage settings to use for tasks run with the task definition.
|
56269
56452
|
*/
|
@@ -56857,7 +57040,7 @@ export type ECSTaskDefinitionHealthCheck = {
|
|
56857
57040
|
``[ "CMD-SHELL", "curl -f http://localhost/ || exit 1" ]``
|
56858
57041
|
You don't include the double quotes and brackets when you use the AWS Management Console.
|
56859
57042
|
``CMD-SHELL, curl -f http://localhost/ || exit 1``
|
56860
|
-
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
|
57043
|
+
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.
|
56861
57044
|
*/
|
56862
57045
|
Command?: string[];
|
56863
57046
|
/**
|
@@ -57106,9 +57289,8 @@ export type ECSTaskDefinitionPortMapping = {
|
|
57106
57289
|
*/
|
57107
57290
|
HostPort?: number;
|
57108
57291
|
/**
|
57109
|
-
|
57110
|
-
|
57111
|
-
*/
|
57292
|
+
* 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.
|
57293
|
+
*/
|
57112
57294
|
Name?: string;
|
57113
57295
|
/**
|
57114
57296
|
* 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.
|
@@ -62563,6 +62745,10 @@ export type EMRServerlessApplicationProps = {
|
|
62563
62745
|
* Runtime configuration for batch and interactive JobRun.
|
62564
62746
|
*/
|
62565
62747
|
RuntimeConfiguration?: EMRServerlessApplicationConfigurationObject[];
|
62748
|
+
/**
|
62749
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
62750
|
+
*/
|
62751
|
+
SchedulerConfiguration?: EMRServerlessApplicationSchedulerConfiguration;
|
62566
62752
|
/**
|
62567
62753
|
* Tag map with key and value
|
62568
62754
|
*/
|
@@ -62849,6 +63035,21 @@ export type EMRServerlessApplicationS3MonitoringConfiguration = {
|
|
62849
63035
|
*/
|
62850
63036
|
LogUri?: string;
|
62851
63037
|
};
|
63038
|
+
/**
|
63039
|
+
* Type definition for `AWS::EMRServerless::Application.SchedulerConfiguration`.
|
63040
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
63041
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-schedulerconfiguration.html}
|
63042
|
+
*/
|
63043
|
+
export type EMRServerlessApplicationSchedulerConfiguration = {
|
63044
|
+
/**
|
63045
|
+
* 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.
|
63046
|
+
*/
|
63047
|
+
MaxConcurrentRuns?: number;
|
63048
|
+
/**
|
63049
|
+
* 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.
|
63050
|
+
*/
|
63051
|
+
QueueTimeoutMinutes?: number;
|
63052
|
+
};
|
62852
63053
|
/**
|
62853
63054
|
* Type definition for `AWS::EMRServerless::Application.Tag`.
|
62854
63055
|
* A key-value pair to associate with a resource.
|
@@ -77046,6 +77247,154 @@ export type IoTCertificateProviderTag = {
|
|
77046
77247
|
*/
|
77047
77248
|
Value: string;
|
77048
77249
|
};
|
77250
|
+
/**
|
77251
|
+
* Resource type definition for `AWS::IoT::Command`.
|
77252
|
+
* Represents the resource definition of AWS IoT Command.
|
77253
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html}
|
77254
|
+
*/
|
77255
|
+
export type IoTCommandProps = {
|
77256
|
+
/**
|
77257
|
+
* The unique identifier for the command.
|
77258
|
+
* @minLength `1`
|
77259
|
+
* @maxLength `64`
|
77260
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
77261
|
+
*/
|
77262
|
+
CommandId: string;
|
77263
|
+
/**
|
77264
|
+
* The date and time when the command was created.
|
77265
|
+
*/
|
77266
|
+
CreatedAt?: string;
|
77267
|
+
/**
|
77268
|
+
* A flag indicating whether the command is deprecated.
|
77269
|
+
*/
|
77270
|
+
Deprecated?: boolean;
|
77271
|
+
/**
|
77272
|
+
* The description of the command.
|
77273
|
+
* @maxLength `2028`
|
77274
|
+
*/
|
77275
|
+
Description?: string;
|
77276
|
+
/**
|
77277
|
+
* The display name for the command.
|
77278
|
+
*/
|
77279
|
+
DisplayName?: string;
|
77280
|
+
/**
|
77281
|
+
* The date and time when the command was last updated.
|
77282
|
+
*/
|
77283
|
+
LastUpdatedAt?: string;
|
77284
|
+
/**
|
77285
|
+
* The list of mandatory parameters for the command.
|
77286
|
+
* @minLength `1`
|
77287
|
+
*/
|
77288
|
+
MandatoryParameters?: IoTCommandCommandParameter[];
|
77289
|
+
/**
|
77290
|
+
* The namespace to which the command belongs.
|
77291
|
+
*/
|
77292
|
+
Namespace?: "AWS-IoT" | "AWS-IoT-FleetWise";
|
77293
|
+
/**
|
77294
|
+
* The payload associated with the command.
|
77295
|
+
*/
|
77296
|
+
Payload?: IoTCommandCommandPayload;
|
77297
|
+
/**
|
77298
|
+
* A flag indicating whether the command is pending deletion.
|
77299
|
+
*/
|
77300
|
+
PendingDeletion?: boolean;
|
77301
|
+
/**
|
77302
|
+
* The customer role associated with the command.
|
77303
|
+
* @minLength `20`
|
77304
|
+
* @maxLength `2028`
|
77305
|
+
*/
|
77306
|
+
RoleArn?: string;
|
77307
|
+
/**
|
77308
|
+
* The tags to be associated with the command.
|
77309
|
+
*/
|
77310
|
+
Tags?: IoTCommandTag[];
|
77311
|
+
};
|
77312
|
+
/**
|
77313
|
+
* Attribute type definition for `AWS::IoT::Command`.
|
77314
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html#aws-resource-iot-command-return-values}
|
77315
|
+
*/
|
77316
|
+
export type IoTCommandAttributes = {
|
77317
|
+
/**
|
77318
|
+
* The Amazon Resource Name (ARN) of the command.
|
77319
|
+
*/
|
77320
|
+
CommandArn: string;
|
77321
|
+
};
|
77322
|
+
/**
|
77323
|
+
* Type definition for `AWS::IoT::Command.CommandParameter`.
|
77324
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.html}
|
77325
|
+
*/
|
77326
|
+
export type IoTCommandCommandParameter = {
|
77327
|
+
DefaultValue?: IoTCommandCommandParameterValue;
|
77328
|
+
/**
|
77329
|
+
* @maxLength `2028`
|
77330
|
+
*/
|
77331
|
+
Description?: string;
|
77332
|
+
/**
|
77333
|
+
* @minLength `1`
|
77334
|
+
* @maxLength `192`
|
77335
|
+
* @pattern `^[.$a-zA-Z0-9_-]+$`
|
77336
|
+
*/
|
77337
|
+
Name: string;
|
77338
|
+
Value?: IoTCommandCommandParameterValue;
|
77339
|
+
};
|
77340
|
+
/**
|
77341
|
+
* Type definition for `AWS::IoT::Command.CommandParameterValue`.
|
77342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervalue.html}
|
77343
|
+
*/
|
77344
|
+
export type IoTCommandCommandParameterValue = {
|
77345
|
+
B?: boolean;
|
77346
|
+
/**
|
77347
|
+
* @minLength `1`
|
77348
|
+
*/
|
77349
|
+
BIN?: string;
|
77350
|
+
D?: number;
|
77351
|
+
I?: number;
|
77352
|
+
/**
|
77353
|
+
* @maxLength `19`
|
77354
|
+
* @pattern `^-?\d+$`
|
77355
|
+
*/
|
77356
|
+
L?: string;
|
77357
|
+
/**
|
77358
|
+
* @minLength `1`
|
77359
|
+
*/
|
77360
|
+
S?: string;
|
77361
|
+
/**
|
77362
|
+
* @minLength `1`
|
77363
|
+
* @maxLength `20`
|
77364
|
+
* @pattern `^[0-9]*$`
|
77365
|
+
*/
|
77366
|
+
UL?: string;
|
77367
|
+
};
|
77368
|
+
/**
|
77369
|
+
* Type definition for `AWS::IoT::Command.CommandPayload`.
|
77370
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandpayload.html}
|
77371
|
+
*/
|
77372
|
+
export type IoTCommandCommandPayload = {
|
77373
|
+
Content?: string;
|
77374
|
+
/**
|
77375
|
+
* @minLength `1`
|
77376
|
+
*/
|
77377
|
+
ContentType?: string;
|
77378
|
+
};
|
77379
|
+
/**
|
77380
|
+
* Type definition for `AWS::IoT::Command.Tag`.
|
77381
|
+
* A key-value pair to associate with a resource.
|
77382
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-tag.html}
|
77383
|
+
*/
|
77384
|
+
export type IoTCommandTag = {
|
77385
|
+
/**
|
77386
|
+
* The tag's key.
|
77387
|
+
* @minLength `1`
|
77388
|
+
* @maxLength `128`
|
77389
|
+
*/
|
77390
|
+
Key: string;
|
77391
|
+
/**
|
77392
|
+
* The tag's value.
|
77393
|
+
* @minLength `1`
|
77394
|
+
* @maxLength `256`
|
77395
|
+
*/
|
77396
|
+
Value: string;
|
77397
|
+
};
|
77049
77398
|
/**
|
77050
77399
|
* Resource type definition for `AWS::IoT::CustomMetric`.
|
77051
77400
|
* A custom metric published by your devices to Device Defender.
|
@@ -98560,6 +98909,7 @@ export type LogsLogGroupProps = {
|
|
98560
98909
|
For more information, including a list of types of data that can be audited and masked, see [Protect sensitive log data with masking](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/mask-sensitive-log-data.html).
|
98561
98910
|
*/
|
98562
98911
|
DataProtectionPolicy?: Record<string, any>;
|
98912
|
+
FieldIndexPolicies?: Record<string, any>[];
|
98563
98913
|
/**
|
98564
98914
|
* The Amazon Resource Name (ARN) of the KMS key to use when encrypting log data.
|
98565
98915
|
To associate an KMS key with the log group, specify the ARN of that KMS key here. If you do so, ingested data is encrypted using this key. This association is stored as long as the data encrypted with the KMS key is still within CWL. This enables CWL to decrypt this data whenever it is requested.
|
@@ -98638,6 +98988,7 @@ export type LogsLogStreamProps = {
|
|
98638
98988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html}
|
98639
98989
|
*/
|
98640
98990
|
export type LogsMetricFilterProps = {
|
98991
|
+
ApplyOnTransformedLogs?: boolean;
|
98641
98992
|
/**
|
98642
98993
|
* The name of the metric filter.
|
98643
98994
|
* @minLength `1`
|
@@ -98750,6 +99101,10 @@ export type LogsQueryDefinitionProps = {
|
|
98750
99101
|
* @maxLength `255`
|
98751
99102
|
*/
|
98752
99103
|
Name: string;
|
99104
|
+
/**
|
99105
|
+
* Query language of the query string. Possible values are CWLI, SQL, PPL, with CWLI being the default.
|
99106
|
+
*/
|
99107
|
+
QueryLanguage?: "CWLI" | "SQL" | "PPL";
|
98753
99108
|
/**
|
98754
99109
|
* The query string to use for this definition
|
98755
99110
|
* @minLength `1`
|
@@ -98801,6 +99156,7 @@ export type LogsResourcePolicyProps = {
|
|
98801
99156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html}
|
98802
99157
|
*/
|
98803
99158
|
export type LogsSubscriptionFilterProps = {
|
99159
|
+
ApplyOnTransformedLogs?: boolean;
|
98804
99160
|
/**
|
98805
99161
|
* The Amazon Resource Name (ARN) of the destination.
|
98806
99162
|
*/
|
@@ -98826,6 +99182,369 @@ export type LogsSubscriptionFilterProps = {
|
|
98826
99182
|
*/
|
98827
99183
|
RoleArn?: string;
|
98828
99184
|
};
|
99185
|
+
/**
|
99186
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
99187
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
99188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
99189
|
+
*/
|
99190
|
+
export type LogsTransformerProps = {
|
99191
|
+
/**
|
99192
|
+
* Existing log group that you want to associate with this transformer.
|
99193
|
+
* @minLength `1`
|
99194
|
+
* @maxLength `2048`
|
99195
|
+
* @pattern `[\w#+=/:,.@-]*`
|
99196
|
+
*/
|
99197
|
+
LogGroupIdentifier: string;
|
99198
|
+
/**
|
99199
|
+
* List of processors in a transformer
|
99200
|
+
* @minLength `1`
|
99201
|
+
* @maxLength `20`
|
99202
|
+
*/
|
99203
|
+
TransformerConfig: LogsTransformerProcessor[];
|
99204
|
+
};
|
99205
|
+
/**
|
99206
|
+
* Type definition for `AWS::Logs::Transformer.AddKeyEntry`.
|
99207
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-addkeyentry.html}
|
99208
|
+
*/
|
99209
|
+
export type LogsTransformerAddKeyEntry = {
|
99210
|
+
/**
|
99211
|
+
* @maxLength `128`
|
99212
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99213
|
+
*/
|
99214
|
+
Key: string;
|
99215
|
+
OverwriteIfExists?: boolean;
|
99216
|
+
/**
|
99217
|
+
* @minLength `1`
|
99218
|
+
* @maxLength `256`
|
99219
|
+
*/
|
99220
|
+
Value: string;
|
99221
|
+
};
|
99222
|
+
/**
|
99223
|
+
* Type definition for `AWS::Logs::Transformer.CopyValueEntry`.
|
99224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-copyvalueentry.html}
|
99225
|
+
*/
|
99226
|
+
export type LogsTransformerCopyValueEntry = {
|
99227
|
+
OverwriteIfExists?: boolean;
|
99228
|
+
/**
|
99229
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99230
|
+
*/
|
99231
|
+
Source: string;
|
99232
|
+
/**
|
99233
|
+
* @maxLength `128`
|
99234
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99235
|
+
*/
|
99236
|
+
Target: string;
|
99237
|
+
};
|
99238
|
+
/**
|
99239
|
+
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
99240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
99241
|
+
*/
|
99242
|
+
export type LogsTransformerMoveKeyEntry = {
|
99243
|
+
OverwriteIfExists?: boolean;
|
99244
|
+
/**
|
99245
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99246
|
+
*/
|
99247
|
+
Source: string;
|
99248
|
+
/**
|
99249
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99250
|
+
*/
|
99251
|
+
Target: string;
|
99252
|
+
};
|
99253
|
+
/**
|
99254
|
+
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
99255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
99256
|
+
*/
|
99257
|
+
export type LogsTransformerParseCloudfront = {
|
99258
|
+
/**
|
99259
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99260
|
+
*/
|
99261
|
+
Source?: string;
|
99262
|
+
};
|
99263
|
+
/**
|
99264
|
+
* Type definition for `AWS::Logs::Transformer.ParsePostgres`.
|
99265
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsepostgres.html}
|
99266
|
+
*/
|
99267
|
+
export type LogsTransformerParsePostgres = {
|
99268
|
+
/**
|
99269
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99270
|
+
*/
|
99271
|
+
Source?: string;
|
99272
|
+
};
|
99273
|
+
/**
|
99274
|
+
* Type definition for `AWS::Logs::Transformer.ParseRoute53`.
|
99275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parseroute53.html}
|
99276
|
+
*/
|
99277
|
+
export type LogsTransformerParseRoute53 = {
|
99278
|
+
/**
|
99279
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99280
|
+
*/
|
99281
|
+
Source?: string;
|
99282
|
+
};
|
99283
|
+
/**
|
99284
|
+
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
99285
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
99286
|
+
*/
|
99287
|
+
export type LogsTransformerParseVPC = {
|
99288
|
+
/**
|
99289
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99290
|
+
*/
|
99291
|
+
Source?: string;
|
99292
|
+
};
|
99293
|
+
/**
|
99294
|
+
* Type definition for `AWS::Logs::Transformer.ParseWAF`.
|
99295
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsewaf.html}
|
99296
|
+
*/
|
99297
|
+
export type LogsTransformerParseWAF = {
|
99298
|
+
/**
|
99299
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99300
|
+
*/
|
99301
|
+
Source?: string;
|
99302
|
+
};
|
99303
|
+
/**
|
99304
|
+
* Type definition for `AWS::Logs::Transformer.Processor`.
|
99305
|
+
* Individual processor configuration
|
99306
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-processor.html}
|
99307
|
+
*/
|
99308
|
+
export type LogsTransformerProcessor = {
|
99309
|
+
AddKeys?: {
|
99310
|
+
/**
|
99311
|
+
* @minLength `1`
|
99312
|
+
* @maxLength `5`
|
99313
|
+
*/
|
99314
|
+
Entries: LogsTransformerAddKeyEntry[];
|
99315
|
+
};
|
99316
|
+
CopyValue?: {
|
99317
|
+
/**
|
99318
|
+
* @minLength `1`
|
99319
|
+
* @maxLength `5`
|
99320
|
+
*/
|
99321
|
+
Entries: LogsTransformerCopyValueEntry[];
|
99322
|
+
};
|
99323
|
+
Csv?: {
|
99324
|
+
/**
|
99325
|
+
* @minLength `1`
|
99326
|
+
* @maxLength `100`
|
99327
|
+
*/
|
99328
|
+
Columns?: string[];
|
99329
|
+
/**
|
99330
|
+
* @maxLength `1`
|
99331
|
+
*/
|
99332
|
+
Delimiter?: string;
|
99333
|
+
/**
|
99334
|
+
* @maxLength `1`
|
99335
|
+
*/
|
99336
|
+
QuoteCharacter?: string;
|
99337
|
+
Source?: string;
|
99338
|
+
};
|
99339
|
+
DateTimeConverter?: {
|
99340
|
+
Locale?: string;
|
99341
|
+
/**
|
99342
|
+
* @minLength `1`
|
99343
|
+
* @maxLength `5`
|
99344
|
+
*/
|
99345
|
+
MatchPatterns: string[];
|
99346
|
+
/**
|
99347
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99348
|
+
*/
|
99349
|
+
Source: string;
|
99350
|
+
SourceTimezone?: string;
|
99351
|
+
/**
|
99352
|
+
* @maxLength `128`
|
99353
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99354
|
+
*/
|
99355
|
+
Target: string;
|
99356
|
+
TargetFormat?: string;
|
99357
|
+
TargetTimezone?: string;
|
99358
|
+
};
|
99359
|
+
DeleteKeys?: {
|
99360
|
+
/**
|
99361
|
+
* @minLength `1`
|
99362
|
+
* @maxLength `5`
|
99363
|
+
*/
|
99364
|
+
WithKeys: string[];
|
99365
|
+
};
|
99366
|
+
Grok?: {
|
99367
|
+
/**
|
99368
|
+
* @maxLength `128`
|
99369
|
+
*/
|
99370
|
+
Match: string;
|
99371
|
+
/**
|
99372
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99373
|
+
*/
|
99374
|
+
Source?: string;
|
99375
|
+
};
|
99376
|
+
ListToMap?: {
|
99377
|
+
Flatten?: boolean;
|
99378
|
+
FlattenedElement?: "first" | "last";
|
99379
|
+
/**
|
99380
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99381
|
+
*/
|
99382
|
+
Key: string;
|
99383
|
+
/**
|
99384
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99385
|
+
*/
|
99386
|
+
Source: string;
|
99387
|
+
/**
|
99388
|
+
* @maxLength `128`
|
99389
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99390
|
+
*/
|
99391
|
+
Target?: string;
|
99392
|
+
/**
|
99393
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99394
|
+
*/
|
99395
|
+
ValueKey?: string;
|
99396
|
+
};
|
99397
|
+
LowerCaseString?: {
|
99398
|
+
/**
|
99399
|
+
* @minLength `1`
|
99400
|
+
* @maxLength `10`
|
99401
|
+
*/
|
99402
|
+
WithKeys: string[];
|
99403
|
+
};
|
99404
|
+
MoveKeys?: {
|
99405
|
+
/**
|
99406
|
+
* @minLength `1`
|
99407
|
+
* @maxLength `5`
|
99408
|
+
*/
|
99409
|
+
Entries: LogsTransformerMoveKeyEntry[];
|
99410
|
+
};
|
99411
|
+
ParseCloudfront?: LogsTransformerParseCloudfront;
|
99412
|
+
ParseJSON?: {
|
99413
|
+
/**
|
99414
|
+
* @maxLength `128`
|
99415
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99416
|
+
*/
|
99417
|
+
Destination?: string;
|
99418
|
+
Source?: string;
|
99419
|
+
};
|
99420
|
+
ParseKeyValue?: {
|
99421
|
+
/**
|
99422
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99423
|
+
*/
|
99424
|
+
Destination?: string;
|
99425
|
+
FieldDelimiter?: string;
|
99426
|
+
/**
|
99427
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99428
|
+
*/
|
99429
|
+
KeyPrefix?: string;
|
99430
|
+
KeyValueDelimiter?: string;
|
99431
|
+
/**
|
99432
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99433
|
+
*/
|
99434
|
+
NonMatchValue?: string;
|
99435
|
+
OverwriteIfExists?: boolean;
|
99436
|
+
/**
|
99437
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99438
|
+
*/
|
99439
|
+
Source?: string;
|
99440
|
+
};
|
99441
|
+
ParsePostgres?: LogsTransformerParsePostgres;
|
99442
|
+
ParseRoute53?: LogsTransformerParseRoute53;
|
99443
|
+
ParseVPC?: LogsTransformerParseVPC;
|
99444
|
+
ParseWAF?: LogsTransformerParseWAF;
|
99445
|
+
RenameKeys?: {
|
99446
|
+
/**
|
99447
|
+
* @minLength `1`
|
99448
|
+
* @maxLength `5`
|
99449
|
+
*/
|
99450
|
+
Entries: LogsTransformerRenameKeyEntry[];
|
99451
|
+
};
|
99452
|
+
SplitString?: {
|
99453
|
+
/**
|
99454
|
+
* @minLength `1`
|
99455
|
+
* @maxLength `10`
|
99456
|
+
*/
|
99457
|
+
Entries: LogsTransformerSplitStringEntry[];
|
99458
|
+
};
|
99459
|
+
SubstituteString?: {
|
99460
|
+
/**
|
99461
|
+
* @minLength `1`
|
99462
|
+
* @maxLength `10`
|
99463
|
+
*/
|
99464
|
+
Entries: LogsTransformerSubstituteStringEntry[];
|
99465
|
+
};
|
99466
|
+
TrimString?: {
|
99467
|
+
/**
|
99468
|
+
* @minLength `1`
|
99469
|
+
* @maxLength `10`
|
99470
|
+
*/
|
99471
|
+
WithKeys: string[];
|
99472
|
+
};
|
99473
|
+
TypeConverter?: {
|
99474
|
+
/**
|
99475
|
+
* @minLength `1`
|
99476
|
+
* @maxLength `5`
|
99477
|
+
*/
|
99478
|
+
Entries: LogsTransformerTypeConverterEntry[];
|
99479
|
+
};
|
99480
|
+
UpperCaseString?: {
|
99481
|
+
/**
|
99482
|
+
* @minLength `1`
|
99483
|
+
* @maxLength `10`
|
99484
|
+
*/
|
99485
|
+
WithKeys: string[];
|
99486
|
+
};
|
99487
|
+
};
|
99488
|
+
/**
|
99489
|
+
* Type definition for `AWS::Logs::Transformer.RenameKeyEntry`.
|
99490
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-renamekeyentry.html}
|
99491
|
+
*/
|
99492
|
+
export type LogsTransformerRenameKeyEntry = {
|
99493
|
+
/**
|
99494
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99495
|
+
*/
|
99496
|
+
Key: string;
|
99497
|
+
OverwriteIfExists?: boolean;
|
99498
|
+
/**
|
99499
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99500
|
+
*/
|
99501
|
+
RenameTo: string;
|
99502
|
+
};
|
99503
|
+
/**
|
99504
|
+
* Type definition for `AWS::Logs::Transformer.SplitStringEntry`.
|
99505
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstringentry.html}
|
99506
|
+
*/
|
99507
|
+
export type LogsTransformerSplitStringEntry = {
|
99508
|
+
/**
|
99509
|
+
* @maxLength `1`
|
99510
|
+
*/
|
99511
|
+
Delimiter: string;
|
99512
|
+
/**
|
99513
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99514
|
+
*/
|
99515
|
+
Source: string;
|
99516
|
+
};
|
99517
|
+
/**
|
99518
|
+
* Type definition for `AWS::Logs::Transformer.SubstituteStringEntry`.
|
99519
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-substitutestringentry.html}
|
99520
|
+
*/
|
99521
|
+
export type LogsTransformerSubstituteStringEntry = {
|
99522
|
+
/**
|
99523
|
+
* @maxLength `128`
|
99524
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99525
|
+
*/
|
99526
|
+
From: string;
|
99527
|
+
/**
|
99528
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99529
|
+
*/
|
99530
|
+
Source: string;
|
99531
|
+
/**
|
99532
|
+
* @maxLength `128`
|
99533
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99534
|
+
*/
|
99535
|
+
To: string;
|
99536
|
+
};
|
99537
|
+
/**
|
99538
|
+
* Type definition for `AWS::Logs::Transformer.TypeConverterEntry`.
|
99539
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-typeconverterentry.html}
|
99540
|
+
*/
|
99541
|
+
export type LogsTransformerTypeConverterEntry = {
|
99542
|
+
/**
|
99543
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99544
|
+
*/
|
99545
|
+
Key: string;
|
99546
|
+
Type: "boolean" | "integer" | "double" | "string";
|
99547
|
+
};
|
98829
99548
|
/**
|
98830
99549
|
* Resource type definition for `AWS::LookoutEquipment::InferenceScheduler`.
|
98831
99550
|
* Resource schema for LookoutEquipment InferenceScheduler.
|
@@ -110660,6 +111379,139 @@ export type NetworkManagerDeviceTag = {
|
|
110660
111379
|
*/
|
110661
111380
|
Value: string;
|
110662
111381
|
};
|
111382
|
+
/**
|
111383
|
+
* AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
|
111384
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
|
111385
|
+
*/
|
111386
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProps = {
|
111387
|
+
/**
|
111388
|
+
* The ID of a core network for the Direct Connect Gateway attachment.
|
111389
|
+
*/
|
111390
|
+
CoreNetworkId: string;
|
111391
|
+
/**
|
111392
|
+
* The ARN of the Direct Connect Gateway.
|
111393
|
+
*/
|
111394
|
+
DirectConnectGatewayArn: string;
|
111395
|
+
/**
|
111396
|
+
* The Regions where the edges are located.
|
111397
|
+
*/
|
111398
|
+
EdgeLocations: string[];
|
111399
|
+
/**
|
111400
|
+
* The attachment to move from one network function group to another.
|
111401
|
+
*/
|
111402
|
+
ProposedNetworkFunctionGroupChange?: NetworkManagerDirectConnectGatewayAttachmentProposedNetworkFunctionGroupChange;
|
111403
|
+
/**
|
111404
|
+
* The attachment to move from one segment to another.
|
111405
|
+
*/
|
111406
|
+
ProposedSegmentChange?: NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange;
|
111407
|
+
/**
|
111408
|
+
* Tags for the attachment.
|
111409
|
+
*/
|
111410
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111411
|
+
};
|
111412
|
+
/**
|
111413
|
+
* Attribute type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment`.
|
111414
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html#aws-resource-networkmanager-directconnectgatewayattachment-return-values}
|
111415
|
+
*/
|
111416
|
+
export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
|
111417
|
+
/**
|
111418
|
+
* Id of the attachment.
|
111419
|
+
*/
|
111420
|
+
AttachmentId: string;
|
111421
|
+
/**
|
111422
|
+
* The policy rule number associated with the attachment.
|
111423
|
+
*/
|
111424
|
+
AttachmentPolicyRuleNumber: number;
|
111425
|
+
/**
|
111426
|
+
* Attachment type.
|
111427
|
+
*/
|
111428
|
+
AttachmentType: string;
|
111429
|
+
/**
|
111430
|
+
* The ARN of a core network for the Direct Connect Gateway attachment.
|
111431
|
+
*/
|
111432
|
+
CoreNetworkArn: string;
|
111433
|
+
/**
|
111434
|
+
* Creation time of the attachment.
|
111435
|
+
*/
|
111436
|
+
CreatedAt: string;
|
111437
|
+
/**
|
111438
|
+
* The name of the network function group attachment.
|
111439
|
+
*/
|
111440
|
+
NetworkFunctionGroupName: string;
|
111441
|
+
/**
|
111442
|
+
* Owner account of the attachment.
|
111443
|
+
*/
|
111444
|
+
OwnerAccountId: string;
|
111445
|
+
/**
|
111446
|
+
* The ARN of the Resource.
|
111447
|
+
*/
|
111448
|
+
ResourceArn: string;
|
111449
|
+
/**
|
111450
|
+
* The name of the segment attachment..
|
111451
|
+
*/
|
111452
|
+
SegmentName: string;
|
111453
|
+
/**
|
111454
|
+
* State of the attachment.
|
111455
|
+
*/
|
111456
|
+
State: string;
|
111457
|
+
/**
|
111458
|
+
* Last update time of the attachment.
|
111459
|
+
*/
|
111460
|
+
UpdatedAt: string;
|
111461
|
+
};
|
111462
|
+
/**
|
111463
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChange`.
|
111464
|
+
* The attachment to move from one network function group to another.
|
111465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposednetworkfunctiongroupchange.html}
|
111466
|
+
*/
|
111467
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProposedNetworkFunctionGroupChange = {
|
111468
|
+
/**
|
111469
|
+
* The rule number in the policy document that applies to this change.
|
111470
|
+
*/
|
111471
|
+
AttachmentPolicyRuleNumber?: number;
|
111472
|
+
/**
|
111473
|
+
* The name of the network function group to change.
|
111474
|
+
*/
|
111475
|
+
NetworkFunctionGroupName?: string;
|
111476
|
+
/**
|
111477
|
+
* The key-value tags that changed for the network function group.
|
111478
|
+
*/
|
111479
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111480
|
+
};
|
111481
|
+
/**
|
111482
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedSegmentChange`.
|
111483
|
+
* The attachment to move from one segment to another.
|
111484
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposedsegmentchange.html}
|
111485
|
+
*/
|
111486
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange = {
|
111487
|
+
/**
|
111488
|
+
* The rule number in the policy document that applies to this change.
|
111489
|
+
*/
|
111490
|
+
AttachmentPolicyRuleNumber?: number;
|
111491
|
+
/**
|
111492
|
+
* The name of the segment to change.
|
111493
|
+
*/
|
111494
|
+
SegmentName?: string;
|
111495
|
+
/**
|
111496
|
+
* The key-value tags that changed for the segment.
|
111497
|
+
*/
|
111498
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111499
|
+
};
|
111500
|
+
/**
|
111501
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.Tag`.
|
111502
|
+
* A key-value pair to associate with a resource.
|
111503
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-tag.html}
|
111504
|
+
*/
|
111505
|
+
export type NetworkManagerDirectConnectGatewayAttachmentTag = {
|
111506
|
+
/**
|
111507
|
+
* 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 -.
|
111508
|
+
*/
|
111509
|
+
Key: string;
|
111510
|
+
/**
|
111511
|
+
* 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 -.
|
111512
|
+
*/
|
111513
|
+
Value: string;
|
111514
|
+
};
|
110663
111515
|
/**
|
110664
111516
|
* The AWS::NetworkManager::GlobalNetwork type specifies a global network of the user's account
|
110665
111517
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html}
|
@@ -148272,18 +149124,19 @@ export type RbinRuleUnlockDelay = {
|
|
148272
149124
|
UnlockDelayValue?: number;
|
148273
149125
|
};
|
148274
149126
|
/**
|
148275
|
-
*
|
149127
|
+
* Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
|
149128
|
+
* Creates a custom DB engine version (CEV).
|
148276
149129
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
148277
149130
|
*/
|
148278
149131
|
export type RDSCustomDBEngineVersionProps = {
|
148279
149132
|
/**
|
148280
|
-
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is
|
149133
|
+
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is ``my-custom-installation-files``.
|
148281
149134
|
* @minLength `3`
|
148282
149135
|
* @maxLength `63`
|
148283
149136
|
*/
|
148284
149137
|
DatabaseInstallationFilesS3BucketName?: string;
|
148285
149138
|
/**
|
148286
|
-
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is
|
149139
|
+
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is ``123456789012/cev1``. If this setting isn't specified, no prefix is assumed.
|
148287
149140
|
* @minLength `1`
|
148288
149141
|
* @maxLength `255`
|
148289
149142
|
*/
|
@@ -148295,47 +149148,57 @@ export type RDSCustomDBEngineVersionProps = {
|
|
148295
149148
|
*/
|
148296
149149
|
Description?: string;
|
148297
149150
|
/**
|
148298
|
-
|
148299
|
-
|
148300
|
-
|
148301
|
-
|
149151
|
+
* The database engine to use for your custom engine version (CEV).
|
149152
|
+
Valid values:
|
149153
|
+
+ ``custom-oracle-ee``
|
149154
|
+
+ ``custom-oracle-ee-cdb``
|
149155
|
+
* @minLength `1`
|
149156
|
+
* @maxLength `35`
|
149157
|
+
*/
|
148302
149158
|
Engine: string;
|
148303
149159
|
/**
|
148304
|
-
* The name of your CEV. The name format is
|
149160
|
+
* The name of your CEV. The name format is ``major version.customized_string``. For example, a valid CEV name is ``19.my_cev1``. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of ``Engine`` and ``EngineVersion`` is unique per customer per Region.
|
149161
|
+
*Constraints:* Minimum length is 1. Maximum length is 60.
|
149162
|
+
*Pattern:* ``^[a-z0-9_.-]{1,60$``}
|
148305
149163
|
* @minLength `1`
|
148306
149164
|
* @maxLength `60`
|
148307
149165
|
*/
|
148308
149166
|
EngineVersion: string;
|
148309
149167
|
/**
|
148310
|
-
*
|
149168
|
+
* A value that indicates the ID of the AMI.
|
148311
149169
|
*/
|
148312
149170
|
ImageId?: string;
|
148313
149171
|
/**
|
148314
|
-
|
148315
|
-
|
148316
|
-
|
148317
|
-
|
149172
|
+
* The AWS KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.
|
149173
|
+
If you have an existing symmetric encryption KMS key in your account, you can use it with RDS Custom. No further action is necessary. If you don't already have a symmetric encryption KMS key in your account, follow the instructions in [Creating a symmetric encryption KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk) in the *Key Management Service Developer Guide*.
|
149174
|
+
You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
|
149175
|
+
* @minLength `1`
|
149176
|
+
* @maxLength `2048`
|
149177
|
+
*/
|
148318
149178
|
KMSKeyId?: string;
|
148319
149179
|
/**
|
148320
|
-
|
148321
|
-
|
148322
|
-
|
148323
|
-
|
149180
|
+
* The CEV manifest, which is a JSON document that describes the installation .zip files stored in Amazon S3. Specify the name/value pairs in a file or a quoted string. RDS Custom applies the patches in the order in which they are listed.
|
149181
|
+
The following JSON fields are valid:
|
149182
|
+
+ MediaImportTemplateVersion Version of the CEV manifest. The date is in the format YYYY-MM-DD. + databaseInstallationFileNames Ordered list of installation files for the CEV. + opatchFileNames Ordered list of OPatch installers used for the Oracle DB engine. + psuRuPatchFileNames The PSU and RU patches for this CEV. + OtherPatchFileNames The patches that are not in the list of PSU and RU patches. Amazon RDS applies these patches after applying the PSU and RU patches.
|
149183
|
+
For more information, see [Creating the CEV manifest](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.preparing.manifest) in the *Amazon RDS User Guide*.
|
149184
|
+
* @minLength `1`
|
149185
|
+
* @maxLength `51000`
|
149186
|
+
*/
|
148324
149187
|
Manifest?: string;
|
148325
149188
|
/**
|
148326
|
-
* The
|
149189
|
+
* The ARN of a CEV to use as a source for creating a new CEV. You can specify a different Amazon Machine Imagine (AMI) by using either ``Source`` or ``UseAwsProvidedLatestImage``. You can't specify a different JSON manifest when you specify ``SourceCustomDbEngineVersionIdentifier``.
|
148327
149190
|
*/
|
148328
149191
|
SourceCustomDbEngineVersionIdentifier?: string;
|
148329
149192
|
/**
|
148330
|
-
*
|
149193
|
+
* A value that indicates the status of a custom engine version (CEV).
|
148331
149194
|
*/
|
148332
149195
|
Status?: "available" | "inactive" | "inactive-except-restore";
|
148333
149196
|
/**
|
148334
|
-
*
|
149197
|
+
* 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.*
|
148335
149198
|
*/
|
148336
149199
|
Tags?: RDSCustomDBEngineVersionTag[];
|
148337
149200
|
/**
|
148338
|
-
*
|
149201
|
+
* Specifies whether to use the latest service-provided Amazon Machine Image (AMI) for the CEV. If you specify ``UseAwsProvidedLatestImage``, you can't also specify ``ImageId``.
|
148339
149202
|
*/
|
148340
149203
|
UseAwsProvidedLatestImage?: boolean;
|
148341
149204
|
};
|
@@ -148344,25 +149207,23 @@ export type RDSCustomDBEngineVersionProps = {
|
|
148344
149207
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html#aws-resource-rds-customdbengineversion-return-values}
|
148345
149208
|
*/
|
148346
149209
|
export type RDSCustomDBEngineVersionAttributes = {
|
148347
|
-
/**
|
148348
|
-
* The ARN of the custom engine version.
|
148349
|
-
*/
|
148350
149210
|
DBEngineVersionArn: string;
|
148351
149211
|
};
|
148352
149212
|
/**
|
148353
149213
|
* Type definition for `AWS::RDS::CustomDBEngineVersion.Tag`.
|
148354
|
-
*
|
149214
|
+
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
149215
|
+
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*.
|
148355
149216
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-customdbengineversion-tag.html}
|
148356
149217
|
*/
|
148357
149218
|
export type RDSCustomDBEngineVersionTag = {
|
148358
149219
|
/**
|
148359
|
-
*
|
149220
|
+
* 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}_.:/=+\\-@]*)$").
|
148360
149221
|
* @minLength `1`
|
148361
149222
|
* @maxLength `128`
|
148362
149223
|
*/
|
148363
149224
|
Key: string;
|
148364
149225
|
/**
|
148365
|
-
*
|
149226
|
+
* 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}_.:/=+\\-@]*)$").
|
148366
149227
|
* @minLength `0`
|
148367
149228
|
* @maxLength `256`
|
148368
149229
|
*/
|
@@ -151891,6 +152752,10 @@ export type RedshiftServerlessWorkgroupProps = {
|
|
151891
152752
|
* The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
|
151892
152753
|
*/
|
151893
152754
|
Port?: number;
|
152755
|
+
/**
|
152756
|
+
* A property that represents the price performance target settings for the workgroup.
|
152757
|
+
*/
|
152758
|
+
PricePerformanceTarget?: RedshiftServerlessWorkgroupPerformanceTarget;
|
151894
152759
|
/**
|
151895
152760
|
* A value that specifies whether the workgroup can be accessible from a public network.
|
151896
152761
|
*/
|
@@ -151982,6 +152847,14 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
151982
152847
|
* @pattern `^[a-z0-9-]+$`
|
151983
152848
|
*/
|
151984
152849
|
NamespaceName: string;
|
152850
|
+
PricePerformanceTarget: {
|
152851
|
+
/**
|
152852
|
+
* @min `1`
|
152853
|
+
* @max `100`
|
152854
|
+
*/
|
152855
|
+
Level: number;
|
152856
|
+
Status: RedshiftServerlessWorkgroupPerformanceTargetStatus;
|
152857
|
+
};
|
151985
152858
|
PubliclyAccessible: boolean;
|
151986
152859
|
SecurityGroupIds: string[];
|
151987
152860
|
Status: RedshiftServerlessWorkgroupWorkgroupStatus;
|
@@ -151996,6 +152869,23 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
151996
152869
|
WorkgroupName: string;
|
151997
152870
|
};
|
151998
152871
|
};
|
152872
|
+
/**
|
152873
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTarget`.
|
152874
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetarget.html}
|
152875
|
+
*/
|
152876
|
+
export type RedshiftServerlessWorkgroupPerformanceTarget = {
|
152877
|
+
/**
|
152878
|
+
* @min `1`
|
152879
|
+
* @max `100`
|
152880
|
+
*/
|
152881
|
+
Level?: number;
|
152882
|
+
Status?: RedshiftServerlessWorkgroupPerformanceTargetStatus;
|
152883
|
+
};
|
152884
|
+
/**
|
152885
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTargetStatus`.
|
152886
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetargetstatus.html}
|
152887
|
+
*/
|
152888
|
+
export type RedshiftServerlessWorkgroupPerformanceTargetStatus = "ENABLED" | "DISABLED";
|
151999
152889
|
/**
|
152000
152890
|
* Type definition for `AWS::RedshiftServerless::Workgroup.Tag`.
|
152001
152891
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-tag.html}
|
@@ -152012,6 +152902,13 @@ export type RedshiftServerlessWorkgroupTag = {
|
|
152012
152902
|
*/
|
152013
152903
|
Value: string;
|
152014
152904
|
};
|
152905
|
+
/**
|
152906
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.Workgroup`.
|
152907
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
|
152908
|
+
*/
|
152909
|
+
export type RedshiftServerlessWorkgroupWorkgroup = {
|
152910
|
+
PricePerformanceTarget?: RedshiftServerlessWorkgroupPerformanceTarget;
|
152911
|
+
};
|
152015
152912
|
/**
|
152016
152913
|
* Type definition for `AWS::RedshiftServerless::Workgroup.WorkgroupStatus`.
|
152017
152914
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroupstatus.html}
|
@@ -158877,6 +159774,75 @@ export type S3OutpostsEndpointNetworkInterface = {
|
|
158877
159774
|
*/
|
158878
159775
|
NetworkInterfaceId: string;
|
158879
159776
|
};
|
159777
|
+
/**
|
159778
|
+
* Resource type definition for `AWS::S3Tables::TableBucket`.
|
159779
|
+
* Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
159780
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
|
159781
|
+
*/
|
159782
|
+
export type S3TablesTableBucketProps = {
|
159783
|
+
/**
|
159784
|
+
* A name for the table bucket.
|
159785
|
+
* @minLength `3`
|
159786
|
+
* @maxLength `63`
|
159787
|
+
*/
|
159788
|
+
TableBucketName: string;
|
159789
|
+
/**
|
159790
|
+
* Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
|
159791
|
+
*/
|
159792
|
+
UnreferencedFileRemoval?: S3TablesTableBucketUnreferencedFileRemoval;
|
159793
|
+
};
|
159794
|
+
/**
|
159795
|
+
* Attribute type definition for `AWS::S3Tables::TableBucket`.
|
159796
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html#aws-resource-s3tables-tablebucket-return-values}
|
159797
|
+
*/
|
159798
|
+
export type S3TablesTableBucketAttributes = {
|
159799
|
+
/**
|
159800
|
+
* The Amazon Resource Name (ARN) of the specified table bucket.
|
159801
|
+
*/
|
159802
|
+
TableBucketARN: string;
|
159803
|
+
};
|
159804
|
+
/**
|
159805
|
+
* Type definition for `AWS::S3Tables::TableBucket.UnreferencedFileRemoval`.
|
159806
|
+
* Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
|
159807
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-unreferencedfileremoval.html}
|
159808
|
+
*/
|
159809
|
+
export type S3TablesTableBucketUnreferencedFileRemoval = {
|
159810
|
+
/**
|
159811
|
+
* S3 permanently deletes noncurrent objects after the number of days specified by the NoncurrentDays property.
|
159812
|
+
* @min `1`
|
159813
|
+
*/
|
159814
|
+
NoncurrentDays?: number;
|
159815
|
+
/**
|
159816
|
+
* Indicates whether the Unreferenced File Removal maintenance action is enabled.
|
159817
|
+
*/
|
159818
|
+
Status?: "Enabled" | "Disabled";
|
159819
|
+
/**
|
159820
|
+
* For any object not referenced by your table and older than the UnreferencedDays property, S3 creates a delete marker and marks the object version as noncurrent.
|
159821
|
+
* @min `1`
|
159822
|
+
*/
|
159823
|
+
UnreferencedDays?: number;
|
159824
|
+
};
|
159825
|
+
/**
|
159826
|
+
* Resource type definition for `AWS::S3Tables::TableBucketPolicy`.
|
159827
|
+
* Applies an IAM resource policy to a table bucket.
|
159828
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html}
|
159829
|
+
*/
|
159830
|
+
export type S3TablesTableBucketPolicyProps = {
|
159831
|
+
/**
|
159832
|
+
* A policy document containing permissions to add to the specified table bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
159833
|
+
*/
|
159834
|
+
ResourcePolicy: S3TablesTableBucketPolicyResourcePolicy;
|
159835
|
+
/**
|
159836
|
+
* The Amazon Resource Name (ARN) of the table bucket to which the policy applies.
|
159837
|
+
*/
|
159838
|
+
TableBucketARN: string;
|
159839
|
+
};
|
159840
|
+
/**
|
159841
|
+
* Type definition for `AWS::S3Tables::TableBucketPolicy.ResourcePolicy`.
|
159842
|
+
* A policy document containing permissions to add to the specified table bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
159843
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucketpolicy-resourcepolicy.html}
|
159844
|
+
*/
|
159845
|
+
export type S3TablesTableBucketPolicyResourcePolicy = Record<string, any> | string;
|
158880
159846
|
/**
|
158881
159847
|
* Resource Type definition for AWS::SageMaker::App
|
158882
159848
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html}
|
@@ -186570,6 +187536,7 @@ export interface ResourceTypes {
|
|
186570
187536
|
"AWS::IoT::CACertificate": IoTCACertificateProps;
|
186571
187537
|
"AWS::IoT::Certificate": IoTCertificateProps;
|
186572
187538
|
"AWS::IoT::CertificateProvider": IoTCertificateProviderProps;
|
187539
|
+
"AWS::IoT::Command": IoTCommandProps;
|
186573
187540
|
"AWS::IoT::CustomMetric": IoTCustomMetricProps;
|
186574
187541
|
"AWS::IoT::Dimension": IoTDimensionProps;
|
186575
187542
|
"AWS::IoT::DomainConfiguration": IoTDomainConfigurationProps;
|
@@ -186725,6 +187692,7 @@ export interface ResourceTypes {
|
|
186725
187692
|
"AWS::Logs::QueryDefinition": LogsQueryDefinitionProps;
|
186726
187693
|
"AWS::Logs::ResourcePolicy": LogsResourcePolicyProps;
|
186727
187694
|
"AWS::Logs::SubscriptionFilter": LogsSubscriptionFilterProps;
|
187695
|
+
"AWS::Logs::Transformer": LogsTransformerProps;
|
186728
187696
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerProps;
|
186729
187697
|
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertProps;
|
186730
187698
|
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
|
@@ -186814,6 +187782,7 @@ export interface ResourceTypes {
|
|
186814
187782
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
|
186815
187783
|
"AWS::NetworkManager::CustomerGatewayAssociation": NetworkManagerCustomerGatewayAssociationProps;
|
186816
187784
|
"AWS::NetworkManager::Device": NetworkManagerDeviceProps;
|
187785
|
+
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentProps;
|
186817
187786
|
"AWS::NetworkManager::GlobalNetwork": NetworkManagerGlobalNetworkProps;
|
186818
187787
|
"AWS::NetworkManager::Link": NetworkManagerLinkProps;
|
186819
187788
|
"AWS::NetworkManager::LinkAssociation": NetworkManagerLinkAssociationProps;
|
@@ -187022,6 +187991,8 @@ export interface ResourceTypes {
|
|
187022
187991
|
"AWS::S3Outposts::Bucket": S3OutpostsBucketProps;
|
187023
187992
|
"AWS::S3Outposts::BucketPolicy": S3OutpostsBucketPolicyProps;
|
187024
187993
|
"AWS::S3Outposts::Endpoint": S3OutpostsEndpointProps;
|
187994
|
+
"AWS::S3Tables::TableBucket": S3TablesTableBucketProps;
|
187995
|
+
"AWS::S3Tables::TableBucketPolicy": S3TablesTableBucketPolicyProps;
|
187025
187996
|
"AWS::SageMaker::App": SageMakerAppProps;
|
187026
187997
|
"AWS::SageMaker::AppImageConfig": SageMakerAppImageConfigProps;
|
187027
187998
|
"AWS::SageMaker::Cluster": SageMakerClusterProps;
|
@@ -187849,6 +188820,7 @@ export interface AttributeTypes {
|
|
187849
188820
|
"AWS::IoT::CACertificate": IoTCACertificateAttributes;
|
187850
188821
|
"AWS::IoT::Certificate": IoTCertificateAttributes;
|
187851
188822
|
"AWS::IoT::CertificateProvider": IoTCertificateProviderAttributes;
|
188823
|
+
"AWS::IoT::Command": IoTCommandAttributes;
|
187852
188824
|
"AWS::IoT::CustomMetric": IoTCustomMetricAttributes;
|
187853
188825
|
"AWS::IoT::Dimension": IoTDimensionAttributes;
|
187854
188826
|
"AWS::IoT::DomainConfiguration": IoTDomainConfigurationAttributes;
|
@@ -188070,6 +189042,7 @@ export interface AttributeTypes {
|
|
188070
189042
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerAttributes;
|
188071
189043
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkAttributes;
|
188072
189044
|
"AWS::NetworkManager::Device": NetworkManagerDeviceAttributes;
|
189045
|
+
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentAttributes;
|
188073
189046
|
"AWS::NetworkManager::GlobalNetwork": NetworkManagerGlobalNetworkAttributes;
|
188074
189047
|
"AWS::NetworkManager::Link": NetworkManagerLinkAttributes;
|
188075
189048
|
"AWS::NetworkManager::Site": NetworkManagerSiteAttributes;
|
@@ -188255,6 +189228,7 @@ export interface AttributeTypes {
|
|
188255
189228
|
"AWS::S3Outposts::AccessPoint": S3OutpostsAccessPointAttributes;
|
188256
189229
|
"AWS::S3Outposts::Bucket": S3OutpostsBucketAttributes;
|
188257
189230
|
"AWS::S3Outposts::Endpoint": S3OutpostsEndpointAttributes;
|
189231
|
+
"AWS::S3Tables::TableBucket": S3TablesTableBucketAttributes;
|
188258
189232
|
"AWS::SageMaker::App": SageMakerAppAttributes;
|
188259
189233
|
"AWS::SageMaker::AppImageConfig": SageMakerAppImageConfigAttributes;
|
188260
189234
|
"AWS::SageMaker::Cluster": SageMakerClusterAttributes;
|
@@ -189139,6 +190113,7 @@ export declare const ResourceType: {
|
|
189139
190113
|
readonly IoTCACertificate: "AWS::IoT::CACertificate";
|
189140
190114
|
readonly IoTCertificate: "AWS::IoT::Certificate";
|
189141
190115
|
readonly IoTCertificateProvider: "AWS::IoT::CertificateProvider";
|
190116
|
+
readonly IoTCommand: "AWS::IoT::Command";
|
189142
190117
|
readonly IoTCustomMetric: "AWS::IoT::CustomMetric";
|
189143
190118
|
readonly IoTDimension: "AWS::IoT::Dimension";
|
189144
190119
|
readonly IoTDomainConfiguration: "AWS::IoT::DomainConfiguration";
|
@@ -189294,6 +190269,7 @@ export declare const ResourceType: {
|
|
189294
190269
|
readonly LogsQueryDefinition: "AWS::Logs::QueryDefinition";
|
189295
190270
|
readonly LogsResourcePolicy: "AWS::Logs::ResourcePolicy";
|
189296
190271
|
readonly LogsSubscriptionFilter: "AWS::Logs::SubscriptionFilter";
|
190272
|
+
readonly LogsTransformer: "AWS::Logs::Transformer";
|
189297
190273
|
readonly LookoutEquipmentInferenceScheduler: "AWS::LookoutEquipment::InferenceScheduler";
|
189298
190274
|
readonly LookoutMetricsAlert: "AWS::LookoutMetrics::Alert";
|
189299
190275
|
readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
|
@@ -189383,6 +190359,7 @@ export declare const ResourceType: {
|
|
189383
190359
|
readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
|
189384
190360
|
readonly NetworkManagerCustomerGatewayAssociation: "AWS::NetworkManager::CustomerGatewayAssociation";
|
189385
190361
|
readonly NetworkManagerDevice: "AWS::NetworkManager::Device";
|
190362
|
+
readonly NetworkManagerDirectConnectGatewayAttachment: "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
189386
190363
|
readonly NetworkManagerGlobalNetwork: "AWS::NetworkManager::GlobalNetwork";
|
189387
190364
|
readonly NetworkManagerLink: "AWS::NetworkManager::Link";
|
189388
190365
|
readonly NetworkManagerLinkAssociation: "AWS::NetworkManager::LinkAssociation";
|
@@ -189591,6 +190568,8 @@ export declare const ResourceType: {
|
|
189591
190568
|
readonly S3OutpostsBucket: "AWS::S3Outposts::Bucket";
|
189592
190569
|
readonly S3OutpostsBucketPolicy: "AWS::S3Outposts::BucketPolicy";
|
189593
190570
|
readonly S3OutpostsEndpoint: "AWS::S3Outposts::Endpoint";
|
190571
|
+
readonly S3TablesTableBucket: "AWS::S3Tables::TableBucket";
|
190572
|
+
readonly S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy";
|
189594
190573
|
readonly SageMakerApp: "AWS::SageMaker::App";
|
189595
190574
|
readonly SageMakerAppImageConfig: "AWS::SageMaker::AppImageConfig";
|
189596
190575
|
readonly SageMakerCluster: "AWS::SageMaker::Cluster";
|