@awboost/cfntypes 0.100.68 → 0.100.70
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 +1071 -92
- package/lib/resources.generated.js +19 -1
- 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
|
/**
|
@@ -25714,6 +25884,7 @@ export type CloudFrontDistributionCacheBehavior = {
|
|
25714
25884
|
* A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
25715
25885
|
*/
|
25716
25886
|
FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
|
25887
|
+
GrpcConfig?: CloudFrontDistributionGrpcConfig;
|
25717
25888
|
/**
|
25718
25889
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
25719
25890
|
*/
|
@@ -25933,6 +26104,7 @@ export type CloudFrontDistributionDefaultCacheBehavior = {
|
|
25933
26104
|
* A list of CloudFront functions that are associated with this cache behavior. Your functions must be published to the ``LIVE`` stage to associate them with a cache behavior.
|
25934
26105
|
*/
|
25935
26106
|
FunctionAssociations?: CloudFrontDistributionFunctionAssociation[];
|
26107
|
+
GrpcConfig?: CloudFrontDistributionGrpcConfig;
|
25936
26108
|
/**
|
25937
26109
|
* A complex type that contains zero or more Lambda@Edge function associations for a cache behavior.
|
25938
26110
|
*/
|
@@ -26186,6 +26358,13 @@ export type CloudFrontDistributionGeoRestriction = {
|
|
26186
26358
|
*/
|
26187
26359
|
RestrictionType: string;
|
26188
26360
|
};
|
26361
|
+
/**
|
26362
|
+
* Type definition for `AWS::CloudFront::Distribution.GrpcConfig`.
|
26363
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-grpcconfig.html}
|
26364
|
+
*/
|
26365
|
+
export type CloudFrontDistributionGrpcConfig = {
|
26366
|
+
Enabled: boolean;
|
26367
|
+
};
|
26189
26368
|
/**
|
26190
26369
|
* Type definition for `AWS::CloudFront::Distribution.LambdaFunctionAssociation`.
|
26191
26370
|
* A complex type that contains a Lambda@Edge function association.
|
@@ -26265,7 +26444,7 @@ export type CloudFrontDistributionLogging = {
|
|
26265
26444
|
/**
|
26266
26445
|
* The Amazon S3 bucket to store the access logs in, for example, ``myawslogbucket.s3.amazonaws.com``.
|
26267
26446
|
*/
|
26268
|
-
Bucket
|
26447
|
+
Bucket?: string;
|
26269
26448
|
/**
|
26270
26449
|
* Specifies whether you want CloudFront to include cookies in access logs, specify ``true`` for ``IncludeCookies``. If you choose to include cookies in logs, CloudFront logs all cookies regardless of how you configure the cache behaviors for this distribution. If you don't want to include cookies when you create a distribution or if you want to disable include cookies for an existing distribution, specify ``false`` for ``IncludeCookies``.
|
26271
26450
|
*/
|
@@ -26375,6 +26554,7 @@ export type CloudFrontDistributionOriginGroup = {
|
|
26375
26554
|
* A complex type that contains information about the origins in an origin group.
|
26376
26555
|
*/
|
26377
26556
|
Members: CloudFrontDistributionOriginGroupMembers;
|
26557
|
+
SelectionCriteria?: CloudFrontDistributionOriginGroupSelectionCriteria;
|
26378
26558
|
};
|
26379
26559
|
/**
|
26380
26560
|
* Type definition for `AWS::CloudFront::Distribution.OriginGroupFailoverCriteria`.
|
@@ -26428,6 +26608,11 @@ export type CloudFrontDistributionOriginGroups = {
|
|
26428
26608
|
*/
|
26429
26609
|
Quantity: number;
|
26430
26610
|
};
|
26611
|
+
/**
|
26612
|
+
* Type definition for `AWS::CloudFront::Distribution.OriginGroupSelectionCriteria`.
|
26613
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupselectioncriteria.html}
|
26614
|
+
*/
|
26615
|
+
export type CloudFrontDistributionOriginGroupSelectionCriteria = "default" | "media-quality-based";
|
26431
26616
|
/**
|
26432
26617
|
* Type definition for `AWS::CloudFront::Distribution.OriginShield`.
|
26433
26618
|
* CloudFront Origin Shield.
|
@@ -34612,16 +34797,16 @@ export type ConnectRoutingProfileTag = {
|
|
34612
34797
|
};
|
34613
34798
|
/**
|
34614
34799
|
* Resource type definition for `AWS::Connect::Rule`.
|
34615
|
-
*
|
34800
|
+
* Creates a rule for the specified CON instance.
|
34616
34801
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-rule.html}
|
34617
34802
|
*/
|
34618
34803
|
export type ConnectRuleProps = {
|
34619
34804
|
/**
|
34620
|
-
*
|
34805
|
+
* A list of actions to be run when the rule is triggered.
|
34621
34806
|
*/
|
34622
34807
|
Actions: ConnectRuleActions;
|
34623
34808
|
/**
|
34624
|
-
* The conditions of
|
34809
|
+
* The conditions of the rule.
|
34625
34810
|
*/
|
34626
34811
|
Function: string;
|
34627
34812
|
/**
|
@@ -34635,16 +34820,17 @@ export type ConnectRuleProps = {
|
|
34635
34820
|
*/
|
34636
34821
|
Name: string;
|
34637
34822
|
/**
|
34638
|
-
* The publish status of
|
34823
|
+
* The publish status of the rule.
|
34824
|
+
*Allowed values*: ``DRAFT`` | ``PUBLISHED``
|
34639
34825
|
*/
|
34640
34826
|
PublishStatus: "DRAFT" | "PUBLISHED";
|
34641
34827
|
/**
|
34642
|
-
*
|
34828
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
34643
34829
|
* @maxLength `50`
|
34644
34830
|
*/
|
34645
34831
|
Tags?: ConnectRuleTag[];
|
34646
34832
|
/**
|
34647
|
-
* The event source
|
34833
|
+
* The event source to trigger the rule.
|
34648
34834
|
*/
|
34649
34835
|
TriggerEventSource: ConnectRuleRuleTriggerEventSource;
|
34650
34836
|
};
|
@@ -34654,19 +34840,18 @@ export type ConnectRuleProps = {
|
|
34654
34840
|
*/
|
34655
34841
|
export type ConnectRuleAttributes = {
|
34656
34842
|
/**
|
34657
|
-
* The Amazon Resource Name (ARN) of the rule.
|
34658
34843
|
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*rule/[-a-zA-Z0-9]*$`
|
34659
34844
|
*/
|
34660
34845
|
RuleArn: string;
|
34661
34846
|
};
|
34662
34847
|
/**
|
34663
34848
|
* Type definition for `AWS::Connect::Rule.Actions`.
|
34664
|
-
*
|
34849
|
+
* A list of actions to be run when the rule is triggered.
|
34665
34850
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-actions.html}
|
34666
34851
|
*/
|
34667
34852
|
export type ConnectRuleActions = {
|
34668
34853
|
/**
|
34669
|
-
*
|
34854
|
+
* Information about the contact category action. The syntax can be empty, for example, ``{}``.
|
34670
34855
|
* @minLength `1`
|
34671
34856
|
* @maxLength `1`
|
34672
34857
|
*/
|
@@ -34684,13 +34869,13 @@ export type ConnectRuleActions = {
|
|
34684
34869
|
*/
|
34685
34870
|
EndAssociatedTasksActions?: ConnectRuleEndAssociatedTasksAction[];
|
34686
34871
|
/**
|
34687
|
-
*
|
34872
|
+
* Information about the EV action.
|
34688
34873
|
* @minLength `1`
|
34689
34874
|
* @maxLength `1`
|
34690
34875
|
*/
|
34691
34876
|
EventBridgeActions?: ConnectRuleEventBridgeAction[];
|
34692
34877
|
/**
|
34693
|
-
*
|
34878
|
+
* Information about the send notification action.
|
34694
34879
|
* @minLength `1`
|
34695
34880
|
* @maxLength `1`
|
34696
34881
|
*/
|
@@ -34702,7 +34887,7 @@ export type ConnectRuleActions = {
|
|
34702
34887
|
*/
|
34703
34888
|
SubmitAutoEvaluationActions?: ConnectRuleSubmitAutoEvaluationAction[];
|
34704
34889
|
/**
|
34705
|
-
*
|
34890
|
+
* Information about the task action. This field is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
34706
34891
|
* @minLength `1`
|
34707
34892
|
* @maxLength `1`
|
34708
34893
|
*/
|
@@ -34722,7 +34907,6 @@ export type ConnectRuleActions = {
|
|
34722
34907
|
export type ConnectRuleAssignContactCategoryAction = Record<string, any>;
|
34723
34908
|
/**
|
34724
34909
|
* Type definition for `AWS::Connect::Rule.CreateCaseAction`.
|
34725
|
-
* The definition for create case action.
|
34726
34910
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-createcaseaction.html}
|
34727
34911
|
*/
|
34728
34912
|
export type ConnectRuleCreateCaseAction = {
|
@@ -34733,7 +34917,6 @@ export type ConnectRuleCreateCaseAction = {
|
|
34733
34917
|
*/
|
34734
34918
|
Fields: ConnectRuleField[];
|
34735
34919
|
/**
|
34736
|
-
* The Id of template.
|
34737
34920
|
* @minLength `1`
|
34738
34921
|
* @maxLength `500`
|
34739
34922
|
*/
|
@@ -34747,36 +34930,34 @@ export type ConnectRuleCreateCaseAction = {
|
|
34747
34930
|
export type ConnectRuleEndAssociatedTasksAction = Record<string, any>;
|
34748
34931
|
/**
|
34749
34932
|
* Type definition for `AWS::Connect::Rule.EventBridgeAction`.
|
34750
|
-
* The
|
34933
|
+
* The EV action definition.
|
34751
34934
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-eventbridgeaction.html}
|
34752
34935
|
*/
|
34753
34936
|
export type ConnectRuleEventBridgeAction = {
|
34754
34937
|
/**
|
34755
|
-
* The name
|
34938
|
+
* The name.
|
34756
34939
|
* @pattern `^[a-zA-Z0-9._-]{1,100}$`
|
34757
34940
|
*/
|
34758
34941
|
Name: string;
|
34759
34942
|
};
|
34760
34943
|
/**
|
34761
34944
|
* Type definition for `AWS::Connect::Rule.Field`.
|
34762
|
-
* The field of the case.
|
34763
34945
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-field.html}
|
34764
34946
|
*/
|
34765
34947
|
export type ConnectRuleField = {
|
34766
34948
|
/**
|
34767
|
-
* The Id of the field
|
34768
34949
|
* @minLength `1`
|
34769
34950
|
* @maxLength `500`
|
34770
34951
|
*/
|
34771
34952
|
Id: string;
|
34772
34953
|
/**
|
34773
|
-
*
|
34954
|
+
* Object for case field values.
|
34774
34955
|
*/
|
34775
34956
|
Value: ConnectRuleFieldValue;
|
34776
34957
|
};
|
34777
34958
|
/**
|
34778
34959
|
* Type definition for `AWS::Connect::Rule.FieldValue`.
|
34779
|
-
*
|
34960
|
+
* Object for case field values.
|
34780
34961
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-fieldvalue.html}
|
34781
34962
|
*/
|
34782
34963
|
export type ConnectRuleFieldValue = {
|
@@ -34792,70 +34973,77 @@ export type ConnectRuleFieldValue = {
|
|
34792
34973
|
*/
|
34793
34974
|
export type ConnectRuleNotificationRecipientType = {
|
34794
34975
|
/**
|
34795
|
-
* The
|
34976
|
+
* The Amazon Resource Name (ARN) of the user account.
|
34796
34977
|
* @minLength `1`
|
34797
34978
|
* @maxLength `5`
|
34798
34979
|
*/
|
34799
34980
|
UserArns?: string[];
|
34800
34981
|
/**
|
34801
|
-
* The
|
34982
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }. CON users with the specified tags will be notified.
|
34802
34983
|
*/
|
34803
34984
|
UserTags?: Record<string, string>;
|
34804
34985
|
};
|
34805
34986
|
/**
|
34806
34987
|
* Type definition for `AWS::Connect::Rule.Reference`.
|
34807
|
-
*
|
34988
|
+
* Information about the reference when the ``referenceType`` is ``URL``. Otherwise, null. (Supports variable injection in the ``Value`` field.)
|
34808
34989
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-reference.html}
|
34809
34990
|
*/
|
34810
34991
|
export type ConnectRuleReference = {
|
34992
|
+
/**
|
34993
|
+
* The type of the reference. ``DATE`` must be of type Epoch timestamp.
|
34994
|
+
*Allowed values*: ``URL`` | ``ATTACHMENT`` | ``NUMBER`` | ``STRING`` | ``DATE`` | ``EMAIL``
|
34995
|
+
*/
|
34811
34996
|
Type: "URL" | "ATTACHMENT" | "NUMBER" | "STRING" | "DATE" | "EMAIL";
|
34812
34997
|
/**
|
34998
|
+
* A valid value for the reference. For example, for a URL reference, a formatted URL that is displayed to an agent in the Contact Control Panel (CCP).
|
34813
34999
|
* @pattern `^(/|https:)`
|
34814
35000
|
*/
|
34815
35001
|
Value: string;
|
34816
35002
|
};
|
34817
35003
|
/**
|
34818
35004
|
* Type definition for `AWS::Connect::Rule.RuleTriggerEventSource`.
|
34819
|
-
* The
|
35005
|
+
* The name of the event source.
|
34820
35006
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-ruletriggereventsource.html}
|
34821
35007
|
*/
|
34822
35008
|
export type ConnectRuleRuleTriggerEventSource = {
|
34823
35009
|
/**
|
34824
|
-
* The name of event source.
|
35010
|
+
* The name of the event source.
|
34825
35011
|
*/
|
34826
35012
|
EventSourceName: "OnContactEvaluationSubmit" | "OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnMetricDataUpdate" | "OnCaseCreate" | "OnCaseUpdate";
|
34827
35013
|
/**
|
34828
|
-
* The Amazon Resource Name (ARN)
|
35014
|
+
* The Amazon Resource Name (ARN) of the integration association. ``IntegrationAssociationArn`` is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
34829
35015
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*integration-association/[-a-zA-Z0-9]*$`
|
34830
35016
|
*/
|
34831
35017
|
IntegrationAssociationArn?: string;
|
34832
35018
|
};
|
34833
35019
|
/**
|
34834
35020
|
* Type definition for `AWS::Connect::Rule.SendNotificationAction`.
|
34835
|
-
*
|
35021
|
+
* Information about the send notification action.
|
34836
35022
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-sendnotificationaction.html}
|
34837
35023
|
*/
|
34838
35024
|
export type ConnectRuleSendNotificationAction = {
|
34839
35025
|
/**
|
34840
|
-
*
|
35026
|
+
* Notification content. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
34841
35027
|
* @minLength `1`
|
34842
35028
|
* @maxLength `1024`
|
34843
35029
|
*/
|
34844
35030
|
Content: string;
|
34845
35031
|
/**
|
34846
|
-
*
|
35032
|
+
* Content type format.
|
35033
|
+
*Allowed value*: ``PLAIN_TEXT``
|
34847
35034
|
*/
|
34848
35035
|
ContentType: "PLAIN_TEXT";
|
34849
35036
|
/**
|
34850
|
-
*
|
35037
|
+
* Notification delivery method.
|
35038
|
+
*Allowed value*: ``EMAIL``
|
34851
35039
|
*/
|
34852
35040
|
DeliveryMethod: "EMAIL";
|
34853
35041
|
/**
|
34854
|
-
*
|
35042
|
+
* Notification recipient.
|
34855
35043
|
*/
|
34856
35044
|
Recipient: ConnectRuleNotificationRecipientType;
|
34857
35045
|
/**
|
34858
|
-
* The subject of
|
35046
|
+
* The subject of the email if the delivery method is ``EMAIL``. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
34859
35047
|
* @minLength `1`
|
34860
35048
|
* @maxLength `200`
|
34861
35049
|
*/
|
@@ -34863,12 +35051,10 @@ export type ConnectRuleSendNotificationAction = {
|
|
34863
35051
|
};
|
34864
35052
|
/**
|
34865
35053
|
* Type definition for `AWS::Connect::Rule.SubmitAutoEvaluationAction`.
|
34866
|
-
* The definition of submit auto evaluation action.
|
34867
35054
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-submitautoevaluationaction.html}
|
34868
35055
|
*/
|
34869
35056
|
export type ConnectRuleSubmitAutoEvaluationAction = {
|
34870
35057
|
/**
|
34871
|
-
* The Amazon Resource Name (ARN) of the evaluation form.
|
34872
35058
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*evaluation-form/[-a-zA-Z0-9]*$`
|
34873
35059
|
*/
|
34874
35060
|
EvaluationFormArn: string;
|
@@ -34880,49 +35066,48 @@ export type ConnectRuleSubmitAutoEvaluationAction = {
|
|
34880
35066
|
*/
|
34881
35067
|
export type ConnectRuleTag = {
|
34882
35068
|
/**
|
34883
|
-
* 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
|
35069
|
+
* 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 -
|
34884
35070
|
* @minLength `1`
|
34885
35071
|
* @maxLength `128`
|
34886
35072
|
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
34887
35073
|
*/
|
34888
35074
|
Key: string;
|
34889
35075
|
/**
|
34890
|
-
* The value for the tag. You can specify a value that
|
35076
|
+
* 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 -
|
34891
35077
|
* @maxLength `256`
|
34892
35078
|
*/
|
34893
35079
|
Value: string;
|
34894
35080
|
};
|
34895
35081
|
/**
|
34896
35082
|
* Type definition for `AWS::Connect::Rule.TaskAction`.
|
34897
|
-
*
|
35083
|
+
* Information about the task action. This field is required if ``TriggerEventSource`` is one of the following values: ``OnZendeskTicketCreate`` | ``OnZendeskTicketStatusUpdate`` | ``OnSalesforceCaseCreate``
|
34898
35084
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-taskaction.html}
|
34899
35085
|
*/
|
34900
35086
|
export type ConnectRuleTaskAction = {
|
34901
35087
|
/**
|
34902
|
-
* The Amazon Resource Name (ARN) of the
|
35088
|
+
* The Amazon Resource Name (ARN) of the flow.
|
34903
35089
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*contact-flow/[-a-zA-Z0-9]*$`
|
34904
35090
|
*/
|
34905
35091
|
ContactFlowArn: string;
|
34906
35092
|
/**
|
34907
|
-
* The description
|
35093
|
+
* The description. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
34908
35094
|
* @minLength `0`
|
34909
35095
|
* @maxLength `4096`
|
34910
35096
|
*/
|
34911
35097
|
Description?: string;
|
34912
35098
|
/**
|
34913
|
-
* The name
|
35099
|
+
* The name. Supports variable injection. For more information, see [JSONPath reference](https://docs.aws.amazon.com/connect/latest/adminguide/contact-lens-variable-injection.html) in the *Administrators Guide*.
|
34914
35100
|
* @minLength `1`
|
34915
35101
|
* @maxLength `512`
|
34916
35102
|
*/
|
34917
35103
|
Name: string;
|
34918
35104
|
/**
|
34919
|
-
*
|
35105
|
+
* Information about the reference when the ``referenceType`` is ``URL``. Otherwise, null. ``URL`` is the only accepted type. (Supports variable injection in the ``Value`` field.)
|
34920
35106
|
*/
|
34921
35107
|
References?: Record<string, ConnectRuleReference>;
|
34922
35108
|
};
|
34923
35109
|
/**
|
34924
35110
|
* Type definition for `AWS::Connect::Rule.UpdateCaseAction`.
|
34925
|
-
* The definition for update case action.
|
34926
35111
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-updatecaseaction.html}
|
34927
35112
|
*/
|
34928
35113
|
export type ConnectRuleUpdateCaseAction = {
|
@@ -35145,6 +35330,11 @@ export type ConnectTaskTemplateProps = {
|
|
35145
35330
|
* @maxLength `100`
|
35146
35331
|
*/
|
35147
35332
|
Name?: string;
|
35333
|
+
/**
|
35334
|
+
* The identifier of the contact flow.
|
35335
|
+
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*contact-flow/[-a-zA-Z0-9]*$`
|
35336
|
+
*/
|
35337
|
+
SelfAssignContactFlowArn?: string;
|
35148
35338
|
/**
|
35149
35339
|
* The status of the task template
|
35150
35340
|
*/
|
@@ -36083,7 +36273,7 @@ export type ConnectCampaignsV2CampaignProps = {
|
|
36083
36273
|
*/
|
36084
36274
|
Schedule?: ConnectCampaignsV2CampaignSchedule;
|
36085
36275
|
/**
|
36086
|
-
* The possible
|
36276
|
+
* The possible source of the campaign
|
36087
36277
|
*/
|
36088
36278
|
Source?: ConnectCampaignsV2CampaignSource;
|
36089
36279
|
/**
|
@@ -36295,6 +36485,20 @@ export type ConnectCampaignsV2CampaignEmailOutboundMode = {
|
|
36295
36485
|
*/
|
36296
36486
|
AgentlessConfig?: ConnectCampaignsV2CampaignAgentlessConfig;
|
36297
36487
|
};
|
36488
|
+
/**
|
36489
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.EventTrigger`.
|
36490
|
+
* The event trigger of the campaign
|
36491
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-eventtrigger.html}
|
36492
|
+
*/
|
36493
|
+
export type ConnectCampaignsV2CampaignEventTrigger = {
|
36494
|
+
/**
|
36495
|
+
* Arn
|
36496
|
+
* @minLength `20`
|
36497
|
+
* @maxLength `500`
|
36498
|
+
* @pattern `^arn:.*$`
|
36499
|
+
*/
|
36500
|
+
CustomerProfilesDomainArn?: string;
|
36501
|
+
};
|
36298
36502
|
/**
|
36299
36503
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
36300
36504
|
* Local time zone config
|
@@ -36465,7 +36669,7 @@ export type ConnectCampaignsV2CampaignSmsOutboundMode = {
|
|
36465
36669
|
};
|
36466
36670
|
/**
|
36467
36671
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Source`.
|
36468
|
-
* The possible
|
36672
|
+
* The possible source of the campaign
|
36469
36673
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-source.html}
|
36470
36674
|
*/
|
36471
36675
|
export type ConnectCampaignsV2CampaignSource = {
|
@@ -36476,6 +36680,10 @@ export type ConnectCampaignsV2CampaignSource = {
|
|
36476
36680
|
* @pattern `^arn:.*$`
|
36477
36681
|
*/
|
36478
36682
|
CustomerProfilesSegmentArn?: string;
|
36683
|
+
/**
|
36684
|
+
* The event trigger of the campaign
|
36685
|
+
*/
|
36686
|
+
EventTrigger?: ConnectCampaignsV2CampaignEventTrigger;
|
36479
36687
|
};
|
36480
36688
|
/**
|
36481
36689
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.Tag`.
|
@@ -45806,8 +46014,8 @@ export type DynamoDBTableProps = {
|
|
45806
46014
|
*/
|
45807
46015
|
GlobalSecondaryIndexes?: DynamoDBTableGlobalSecondaryIndex[];
|
45808
46016
|
/**
|
45809
|
-
* Specifies the properties of data being imported from the S3 bucket source to the table.
|
45810
|
-
If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, or the ``
|
46017
|
+
* Specifies the properties of data being imported from the S3 bucket source to the" table.
|
46018
|
+
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.
|
45811
46019
|
*/
|
45812
46020
|
ImportSourceSpecification?: DynamoDBTableImportSourceSpecification;
|
45813
46021
|
/**
|
@@ -46590,7 +46798,7 @@ export type EC2CustomerGatewayProps = {
|
|
46590
46798
|
BgpAsnExtended?: number;
|
46591
46799
|
/**
|
46592
46800
|
* The Amazon Resource Name (ARN) for the customer gateway certificate.
|
46593
|
-
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(
|
46801
|
+
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso([a-z]{1})?))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
|
46594
46802
|
*/
|
46595
46803
|
CertificateArn?: string;
|
46596
46804
|
/**
|
@@ -49120,6 +49328,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49120
49328
|
* The network interfaces for the instance.
|
49121
49329
|
*/
|
49122
49330
|
NetworkInterfaces?: EC2LaunchTemplateNetworkInterface[];
|
49331
|
+
NetworkPerformanceOptions?: unknown;
|
49123
49332
|
/**
|
49124
49333
|
* The placement for the instance.
|
49125
49334
|
*/
|
@@ -56271,6 +56480,7 @@ export type ECSTaskDefinitionProps = {
|
|
56271
56480
|
This option requires Linux platform ``1.4.0`` or later.
|
56272
56481
|
*/
|
56273
56482
|
Cpu?: string;
|
56483
|
+
EnableFaultInjection?: boolean;
|
56274
56484
|
/**
|
56275
56485
|
* The ephemeral storage settings to use for tasks run with the task definition.
|
56276
56486
|
*/
|
@@ -56646,6 +56856,9 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
56646
56856
|
This parameter is not supported for Windows containers.
|
56647
56857
|
*/
|
56648
56858
|
User?: string;
|
56859
|
+
/**
|
56860
|
+
* Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest. By default, the value is ``enabled``. If you set the value for a container as ``disabled``, Amazon ECS will not resolve the provided container image tag to a digest and will use the original image URI specified in the container definition for deployment. For more information about container image resolution, see [Container image resolution](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html#deployment-container-image-stability) in the *Amazon ECS Developer Guide*.
|
56861
|
+
*/
|
56649
56862
|
VersionConsistency?: "enabled" | "disabled";
|
56650
56863
|
/**
|
56651
56864
|
* Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in the docker container create command and the ``--volumes-from`` option to docker run.
|
@@ -62569,6 +62782,10 @@ export type EMRServerlessApplicationProps = {
|
|
62569
62782
|
* Runtime configuration for batch and interactive JobRun.
|
62570
62783
|
*/
|
62571
62784
|
RuntimeConfiguration?: EMRServerlessApplicationConfigurationObject[];
|
62785
|
+
/**
|
62786
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
62787
|
+
*/
|
62788
|
+
SchedulerConfiguration?: EMRServerlessApplicationSchedulerConfiguration;
|
62572
62789
|
/**
|
62573
62790
|
* Tag map with key and value
|
62574
62791
|
*/
|
@@ -62855,6 +63072,21 @@ export type EMRServerlessApplicationS3MonitoringConfiguration = {
|
|
62855
63072
|
*/
|
62856
63073
|
LogUri?: string;
|
62857
63074
|
};
|
63075
|
+
/**
|
63076
|
+
* Type definition for `AWS::EMRServerless::Application.SchedulerConfiguration`.
|
63077
|
+
* The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.
|
63078
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-schedulerconfiguration.html}
|
63079
|
+
*/
|
63080
|
+
export type EMRServerlessApplicationSchedulerConfiguration = {
|
63081
|
+
/**
|
63082
|
+
* 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.
|
63083
|
+
*/
|
63084
|
+
MaxConcurrentRuns?: number;
|
63085
|
+
/**
|
63086
|
+
* 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.
|
63087
|
+
*/
|
63088
|
+
QueueTimeoutMinutes?: number;
|
63089
|
+
};
|
62858
63090
|
/**
|
62859
63091
|
* Type definition for `AWS::EMRServerless::Application.Tag`.
|
62860
63092
|
* A key-value pair to associate with a resource.
|
@@ -77052,6 +77284,154 @@ export type IoTCertificateProviderTag = {
|
|
77052
77284
|
*/
|
77053
77285
|
Value: string;
|
77054
77286
|
};
|
77287
|
+
/**
|
77288
|
+
* Resource type definition for `AWS::IoT::Command`.
|
77289
|
+
* Represents the resource definition of AWS IoT Command.
|
77290
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html}
|
77291
|
+
*/
|
77292
|
+
export type IoTCommandProps = {
|
77293
|
+
/**
|
77294
|
+
* The unique identifier for the command.
|
77295
|
+
* @minLength `1`
|
77296
|
+
* @maxLength `64`
|
77297
|
+
* @pattern `^[a-zA-Z0-9_-]+$`
|
77298
|
+
*/
|
77299
|
+
CommandId: string;
|
77300
|
+
/**
|
77301
|
+
* The date and time when the command was created.
|
77302
|
+
*/
|
77303
|
+
CreatedAt?: string;
|
77304
|
+
/**
|
77305
|
+
* A flag indicating whether the command is deprecated.
|
77306
|
+
*/
|
77307
|
+
Deprecated?: boolean;
|
77308
|
+
/**
|
77309
|
+
* The description of the command.
|
77310
|
+
* @maxLength `2028`
|
77311
|
+
*/
|
77312
|
+
Description?: string;
|
77313
|
+
/**
|
77314
|
+
* The display name for the command.
|
77315
|
+
*/
|
77316
|
+
DisplayName?: string;
|
77317
|
+
/**
|
77318
|
+
* The date and time when the command was last updated.
|
77319
|
+
*/
|
77320
|
+
LastUpdatedAt?: string;
|
77321
|
+
/**
|
77322
|
+
* The list of mandatory parameters for the command.
|
77323
|
+
* @minLength `1`
|
77324
|
+
*/
|
77325
|
+
MandatoryParameters?: IoTCommandCommandParameter[];
|
77326
|
+
/**
|
77327
|
+
* The namespace to which the command belongs.
|
77328
|
+
*/
|
77329
|
+
Namespace?: "AWS-IoT" | "AWS-IoT-FleetWise";
|
77330
|
+
/**
|
77331
|
+
* The payload associated with the command.
|
77332
|
+
*/
|
77333
|
+
Payload?: IoTCommandCommandPayload;
|
77334
|
+
/**
|
77335
|
+
* A flag indicating whether the command is pending deletion.
|
77336
|
+
*/
|
77337
|
+
PendingDeletion?: boolean;
|
77338
|
+
/**
|
77339
|
+
* The customer role associated with the command.
|
77340
|
+
* @minLength `20`
|
77341
|
+
* @maxLength `2028`
|
77342
|
+
*/
|
77343
|
+
RoleArn?: string;
|
77344
|
+
/**
|
77345
|
+
* The tags to be associated with the command.
|
77346
|
+
*/
|
77347
|
+
Tags?: IoTCommandTag[];
|
77348
|
+
};
|
77349
|
+
/**
|
77350
|
+
* Attribute type definition for `AWS::IoT::Command`.
|
77351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-command.html#aws-resource-iot-command-return-values}
|
77352
|
+
*/
|
77353
|
+
export type IoTCommandAttributes = {
|
77354
|
+
/**
|
77355
|
+
* The Amazon Resource Name (ARN) of the command.
|
77356
|
+
*/
|
77357
|
+
CommandArn: string;
|
77358
|
+
};
|
77359
|
+
/**
|
77360
|
+
* Type definition for `AWS::IoT::Command.CommandParameter`.
|
77361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.html}
|
77362
|
+
*/
|
77363
|
+
export type IoTCommandCommandParameter = {
|
77364
|
+
DefaultValue?: IoTCommandCommandParameterValue;
|
77365
|
+
/**
|
77366
|
+
* @maxLength `2028`
|
77367
|
+
*/
|
77368
|
+
Description?: string;
|
77369
|
+
/**
|
77370
|
+
* @minLength `1`
|
77371
|
+
* @maxLength `192`
|
77372
|
+
* @pattern `^[.$a-zA-Z0-9_-]+$`
|
77373
|
+
*/
|
77374
|
+
Name: string;
|
77375
|
+
Value?: IoTCommandCommandParameterValue;
|
77376
|
+
};
|
77377
|
+
/**
|
77378
|
+
* Type definition for `AWS::IoT::Command.CommandParameterValue`.
|
77379
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervalue.html}
|
77380
|
+
*/
|
77381
|
+
export type IoTCommandCommandParameterValue = {
|
77382
|
+
B?: boolean;
|
77383
|
+
/**
|
77384
|
+
* @minLength `1`
|
77385
|
+
*/
|
77386
|
+
BIN?: string;
|
77387
|
+
D?: number;
|
77388
|
+
I?: number;
|
77389
|
+
/**
|
77390
|
+
* @maxLength `19`
|
77391
|
+
* @pattern `^-?\d+$`
|
77392
|
+
*/
|
77393
|
+
L?: string;
|
77394
|
+
/**
|
77395
|
+
* @minLength `1`
|
77396
|
+
*/
|
77397
|
+
S?: string;
|
77398
|
+
/**
|
77399
|
+
* @minLength `1`
|
77400
|
+
* @maxLength `20`
|
77401
|
+
* @pattern `^[0-9]*$`
|
77402
|
+
*/
|
77403
|
+
UL?: string;
|
77404
|
+
};
|
77405
|
+
/**
|
77406
|
+
* Type definition for `AWS::IoT::Command.CommandPayload`.
|
77407
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandpayload.html}
|
77408
|
+
*/
|
77409
|
+
export type IoTCommandCommandPayload = {
|
77410
|
+
Content?: string;
|
77411
|
+
/**
|
77412
|
+
* @minLength `1`
|
77413
|
+
*/
|
77414
|
+
ContentType?: string;
|
77415
|
+
};
|
77416
|
+
/**
|
77417
|
+
* Type definition for `AWS::IoT::Command.Tag`.
|
77418
|
+
* A key-value pair to associate with a resource.
|
77419
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-tag.html}
|
77420
|
+
*/
|
77421
|
+
export type IoTCommandTag = {
|
77422
|
+
/**
|
77423
|
+
* The tag's key.
|
77424
|
+
* @minLength `1`
|
77425
|
+
* @maxLength `128`
|
77426
|
+
*/
|
77427
|
+
Key: string;
|
77428
|
+
/**
|
77429
|
+
* The tag's value.
|
77430
|
+
* @minLength `1`
|
77431
|
+
* @maxLength `256`
|
77432
|
+
*/
|
77433
|
+
Value: string;
|
77434
|
+
};
|
77055
77435
|
/**
|
77056
77436
|
* Resource type definition for `AWS::IoT::CustomMetric`.
|
77057
77437
|
* A custom metric published by your devices to Device Defender.
|
@@ -98566,6 +98946,7 @@ export type LogsLogGroupProps = {
|
|
98566
98946
|
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).
|
98567
98947
|
*/
|
98568
98948
|
DataProtectionPolicy?: Record<string, any>;
|
98949
|
+
FieldIndexPolicies?: Record<string, any>[];
|
98569
98950
|
/**
|
98570
98951
|
* The Amazon Resource Name (ARN) of the KMS key to use when encrypting log data.
|
98571
98952
|
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.
|
@@ -98644,6 +99025,7 @@ export type LogsLogStreamProps = {
|
|
98644
99025
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html}
|
98645
99026
|
*/
|
98646
99027
|
export type LogsMetricFilterProps = {
|
99028
|
+
ApplyOnTransformedLogs?: boolean;
|
98647
99029
|
/**
|
98648
99030
|
* The name of the metric filter.
|
98649
99031
|
* @minLength `1`
|
@@ -98756,6 +99138,10 @@ export type LogsQueryDefinitionProps = {
|
|
98756
99138
|
* @maxLength `255`
|
98757
99139
|
*/
|
98758
99140
|
Name: string;
|
99141
|
+
/**
|
99142
|
+
* Query language of the query string. Possible values are CWLI, SQL, PPL, with CWLI being the default.
|
99143
|
+
*/
|
99144
|
+
QueryLanguage?: "CWLI" | "SQL" | "PPL";
|
98759
99145
|
/**
|
98760
99146
|
* The query string to use for this definition
|
98761
99147
|
* @minLength `1`
|
@@ -98807,6 +99193,7 @@ export type LogsResourcePolicyProps = {
|
|
98807
99193
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html}
|
98808
99194
|
*/
|
98809
99195
|
export type LogsSubscriptionFilterProps = {
|
99196
|
+
ApplyOnTransformedLogs?: boolean;
|
98810
99197
|
/**
|
98811
99198
|
* The Amazon Resource Name (ARN) of the destination.
|
98812
99199
|
*/
|
@@ -98832,6 +99219,369 @@ export type LogsSubscriptionFilterProps = {
|
|
98832
99219
|
*/
|
98833
99220
|
RoleArn?: string;
|
98834
99221
|
};
|
99222
|
+
/**
|
99223
|
+
* Resource type definition for `AWS::Logs::Transformer`.
|
99224
|
+
* Specifies a transformer on the log group to transform logs into consistent structured and information rich format.
|
99225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-transformer.html}
|
99226
|
+
*/
|
99227
|
+
export type LogsTransformerProps = {
|
99228
|
+
/**
|
99229
|
+
* Existing log group that you want to associate with this transformer.
|
99230
|
+
* @minLength `1`
|
99231
|
+
* @maxLength `2048`
|
99232
|
+
* @pattern `[\w#+=/:,.@-]*`
|
99233
|
+
*/
|
99234
|
+
LogGroupIdentifier: string;
|
99235
|
+
/**
|
99236
|
+
* List of processors in a transformer
|
99237
|
+
* @minLength `1`
|
99238
|
+
* @maxLength `20`
|
99239
|
+
*/
|
99240
|
+
TransformerConfig: LogsTransformerProcessor[];
|
99241
|
+
};
|
99242
|
+
/**
|
99243
|
+
* Type definition for `AWS::Logs::Transformer.AddKeyEntry`.
|
99244
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-addkeyentry.html}
|
99245
|
+
*/
|
99246
|
+
export type LogsTransformerAddKeyEntry = {
|
99247
|
+
/**
|
99248
|
+
* @maxLength `128`
|
99249
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99250
|
+
*/
|
99251
|
+
Key: string;
|
99252
|
+
OverwriteIfExists?: boolean;
|
99253
|
+
/**
|
99254
|
+
* @minLength `1`
|
99255
|
+
* @maxLength `256`
|
99256
|
+
*/
|
99257
|
+
Value: string;
|
99258
|
+
};
|
99259
|
+
/**
|
99260
|
+
* Type definition for `AWS::Logs::Transformer.CopyValueEntry`.
|
99261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-copyvalueentry.html}
|
99262
|
+
*/
|
99263
|
+
export type LogsTransformerCopyValueEntry = {
|
99264
|
+
OverwriteIfExists?: boolean;
|
99265
|
+
/**
|
99266
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99267
|
+
*/
|
99268
|
+
Source: string;
|
99269
|
+
/**
|
99270
|
+
* @maxLength `128`
|
99271
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99272
|
+
*/
|
99273
|
+
Target: string;
|
99274
|
+
};
|
99275
|
+
/**
|
99276
|
+
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
99277
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
99278
|
+
*/
|
99279
|
+
export type LogsTransformerMoveKeyEntry = {
|
99280
|
+
OverwriteIfExists?: boolean;
|
99281
|
+
/**
|
99282
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99283
|
+
*/
|
99284
|
+
Source: string;
|
99285
|
+
/**
|
99286
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99287
|
+
*/
|
99288
|
+
Target: string;
|
99289
|
+
};
|
99290
|
+
/**
|
99291
|
+
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
99292
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
99293
|
+
*/
|
99294
|
+
export type LogsTransformerParseCloudfront = {
|
99295
|
+
/**
|
99296
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99297
|
+
*/
|
99298
|
+
Source?: string;
|
99299
|
+
};
|
99300
|
+
/**
|
99301
|
+
* Type definition for `AWS::Logs::Transformer.ParsePostgres`.
|
99302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsepostgres.html}
|
99303
|
+
*/
|
99304
|
+
export type LogsTransformerParsePostgres = {
|
99305
|
+
/**
|
99306
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99307
|
+
*/
|
99308
|
+
Source?: string;
|
99309
|
+
};
|
99310
|
+
/**
|
99311
|
+
* Type definition for `AWS::Logs::Transformer.ParseRoute53`.
|
99312
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parseroute53.html}
|
99313
|
+
*/
|
99314
|
+
export type LogsTransformerParseRoute53 = {
|
99315
|
+
/**
|
99316
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99317
|
+
*/
|
99318
|
+
Source?: string;
|
99319
|
+
};
|
99320
|
+
/**
|
99321
|
+
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
99322
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
99323
|
+
*/
|
99324
|
+
export type LogsTransformerParseVPC = {
|
99325
|
+
/**
|
99326
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99327
|
+
*/
|
99328
|
+
Source?: string;
|
99329
|
+
};
|
99330
|
+
/**
|
99331
|
+
* Type definition for `AWS::Logs::Transformer.ParseWAF`.
|
99332
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsewaf.html}
|
99333
|
+
*/
|
99334
|
+
export type LogsTransformerParseWAF = {
|
99335
|
+
/**
|
99336
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99337
|
+
*/
|
99338
|
+
Source?: string;
|
99339
|
+
};
|
99340
|
+
/**
|
99341
|
+
* Type definition for `AWS::Logs::Transformer.Processor`.
|
99342
|
+
* Individual processor configuration
|
99343
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-processor.html}
|
99344
|
+
*/
|
99345
|
+
export type LogsTransformerProcessor = {
|
99346
|
+
AddKeys?: {
|
99347
|
+
/**
|
99348
|
+
* @minLength `1`
|
99349
|
+
* @maxLength `5`
|
99350
|
+
*/
|
99351
|
+
Entries: LogsTransformerAddKeyEntry[];
|
99352
|
+
};
|
99353
|
+
CopyValue?: {
|
99354
|
+
/**
|
99355
|
+
* @minLength `1`
|
99356
|
+
* @maxLength `5`
|
99357
|
+
*/
|
99358
|
+
Entries: LogsTransformerCopyValueEntry[];
|
99359
|
+
};
|
99360
|
+
Csv?: {
|
99361
|
+
/**
|
99362
|
+
* @minLength `1`
|
99363
|
+
* @maxLength `100`
|
99364
|
+
*/
|
99365
|
+
Columns?: string[];
|
99366
|
+
/**
|
99367
|
+
* @maxLength `1`
|
99368
|
+
*/
|
99369
|
+
Delimiter?: string;
|
99370
|
+
/**
|
99371
|
+
* @maxLength `1`
|
99372
|
+
*/
|
99373
|
+
QuoteCharacter?: string;
|
99374
|
+
Source?: string;
|
99375
|
+
};
|
99376
|
+
DateTimeConverter?: {
|
99377
|
+
Locale?: string;
|
99378
|
+
/**
|
99379
|
+
* @minLength `1`
|
99380
|
+
* @maxLength `5`
|
99381
|
+
*/
|
99382
|
+
MatchPatterns: string[];
|
99383
|
+
/**
|
99384
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99385
|
+
*/
|
99386
|
+
Source: string;
|
99387
|
+
SourceTimezone?: string;
|
99388
|
+
/**
|
99389
|
+
* @maxLength `128`
|
99390
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99391
|
+
*/
|
99392
|
+
Target: string;
|
99393
|
+
TargetFormat?: string;
|
99394
|
+
TargetTimezone?: string;
|
99395
|
+
};
|
99396
|
+
DeleteKeys?: {
|
99397
|
+
/**
|
99398
|
+
* @minLength `1`
|
99399
|
+
* @maxLength `5`
|
99400
|
+
*/
|
99401
|
+
WithKeys: string[];
|
99402
|
+
};
|
99403
|
+
Grok?: {
|
99404
|
+
/**
|
99405
|
+
* @maxLength `128`
|
99406
|
+
*/
|
99407
|
+
Match: string;
|
99408
|
+
/**
|
99409
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99410
|
+
*/
|
99411
|
+
Source?: string;
|
99412
|
+
};
|
99413
|
+
ListToMap?: {
|
99414
|
+
Flatten?: boolean;
|
99415
|
+
FlattenedElement?: "first" | "last";
|
99416
|
+
/**
|
99417
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99418
|
+
*/
|
99419
|
+
Key: string;
|
99420
|
+
/**
|
99421
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99422
|
+
*/
|
99423
|
+
Source: string;
|
99424
|
+
/**
|
99425
|
+
* @maxLength `128`
|
99426
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99427
|
+
*/
|
99428
|
+
Target?: string;
|
99429
|
+
/**
|
99430
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99431
|
+
*/
|
99432
|
+
ValueKey?: string;
|
99433
|
+
};
|
99434
|
+
LowerCaseString?: {
|
99435
|
+
/**
|
99436
|
+
* @minLength `1`
|
99437
|
+
* @maxLength `10`
|
99438
|
+
*/
|
99439
|
+
WithKeys: string[];
|
99440
|
+
};
|
99441
|
+
MoveKeys?: {
|
99442
|
+
/**
|
99443
|
+
* @minLength `1`
|
99444
|
+
* @maxLength `5`
|
99445
|
+
*/
|
99446
|
+
Entries: LogsTransformerMoveKeyEntry[];
|
99447
|
+
};
|
99448
|
+
ParseCloudfront?: LogsTransformerParseCloudfront;
|
99449
|
+
ParseJSON?: {
|
99450
|
+
/**
|
99451
|
+
* @maxLength `128`
|
99452
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99453
|
+
*/
|
99454
|
+
Destination?: string;
|
99455
|
+
Source?: string;
|
99456
|
+
};
|
99457
|
+
ParseKeyValue?: {
|
99458
|
+
/**
|
99459
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99460
|
+
*/
|
99461
|
+
Destination?: string;
|
99462
|
+
FieldDelimiter?: string;
|
99463
|
+
/**
|
99464
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99465
|
+
*/
|
99466
|
+
KeyPrefix?: string;
|
99467
|
+
KeyValueDelimiter?: string;
|
99468
|
+
/**
|
99469
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99470
|
+
*/
|
99471
|
+
NonMatchValue?: string;
|
99472
|
+
OverwriteIfExists?: boolean;
|
99473
|
+
/**
|
99474
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99475
|
+
*/
|
99476
|
+
Source?: string;
|
99477
|
+
};
|
99478
|
+
ParsePostgres?: LogsTransformerParsePostgres;
|
99479
|
+
ParseRoute53?: LogsTransformerParseRoute53;
|
99480
|
+
ParseVPC?: LogsTransformerParseVPC;
|
99481
|
+
ParseWAF?: LogsTransformerParseWAF;
|
99482
|
+
RenameKeys?: {
|
99483
|
+
/**
|
99484
|
+
* @minLength `1`
|
99485
|
+
* @maxLength `5`
|
99486
|
+
*/
|
99487
|
+
Entries: LogsTransformerRenameKeyEntry[];
|
99488
|
+
};
|
99489
|
+
SplitString?: {
|
99490
|
+
/**
|
99491
|
+
* @minLength `1`
|
99492
|
+
* @maxLength `10`
|
99493
|
+
*/
|
99494
|
+
Entries: LogsTransformerSplitStringEntry[];
|
99495
|
+
};
|
99496
|
+
SubstituteString?: {
|
99497
|
+
/**
|
99498
|
+
* @minLength `1`
|
99499
|
+
* @maxLength `10`
|
99500
|
+
*/
|
99501
|
+
Entries: LogsTransformerSubstituteStringEntry[];
|
99502
|
+
};
|
99503
|
+
TrimString?: {
|
99504
|
+
/**
|
99505
|
+
* @minLength `1`
|
99506
|
+
* @maxLength `10`
|
99507
|
+
*/
|
99508
|
+
WithKeys: string[];
|
99509
|
+
};
|
99510
|
+
TypeConverter?: {
|
99511
|
+
/**
|
99512
|
+
* @minLength `1`
|
99513
|
+
* @maxLength `5`
|
99514
|
+
*/
|
99515
|
+
Entries: LogsTransformerTypeConverterEntry[];
|
99516
|
+
};
|
99517
|
+
UpperCaseString?: {
|
99518
|
+
/**
|
99519
|
+
* @minLength `1`
|
99520
|
+
* @maxLength `10`
|
99521
|
+
*/
|
99522
|
+
WithKeys: string[];
|
99523
|
+
};
|
99524
|
+
};
|
99525
|
+
/**
|
99526
|
+
* Type definition for `AWS::Logs::Transformer.RenameKeyEntry`.
|
99527
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-renamekeyentry.html}
|
99528
|
+
*/
|
99529
|
+
export type LogsTransformerRenameKeyEntry = {
|
99530
|
+
/**
|
99531
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99532
|
+
*/
|
99533
|
+
Key: string;
|
99534
|
+
OverwriteIfExists?: boolean;
|
99535
|
+
/**
|
99536
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99537
|
+
*/
|
99538
|
+
RenameTo: string;
|
99539
|
+
};
|
99540
|
+
/**
|
99541
|
+
* Type definition for `AWS::Logs::Transformer.SplitStringEntry`.
|
99542
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstringentry.html}
|
99543
|
+
*/
|
99544
|
+
export type LogsTransformerSplitStringEntry = {
|
99545
|
+
/**
|
99546
|
+
* @maxLength `1`
|
99547
|
+
*/
|
99548
|
+
Delimiter: string;
|
99549
|
+
/**
|
99550
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99551
|
+
*/
|
99552
|
+
Source: string;
|
99553
|
+
};
|
99554
|
+
/**
|
99555
|
+
* Type definition for `AWS::Logs::Transformer.SubstituteStringEntry`.
|
99556
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-substitutestringentry.html}
|
99557
|
+
*/
|
99558
|
+
export type LogsTransformerSubstituteStringEntry = {
|
99559
|
+
/**
|
99560
|
+
* @maxLength `128`
|
99561
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99562
|
+
*/
|
99563
|
+
From: string;
|
99564
|
+
/**
|
99565
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99566
|
+
*/
|
99567
|
+
Source: string;
|
99568
|
+
/**
|
99569
|
+
* @maxLength `128`
|
99570
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99571
|
+
*/
|
99572
|
+
To: string;
|
99573
|
+
};
|
99574
|
+
/**
|
99575
|
+
* Type definition for `AWS::Logs::Transformer.TypeConverterEntry`.
|
99576
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-typeconverterentry.html}
|
99577
|
+
*/
|
99578
|
+
export type LogsTransformerTypeConverterEntry = {
|
99579
|
+
/**
|
99580
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
99581
|
+
*/
|
99582
|
+
Key: string;
|
99583
|
+
Type: "boolean" | "integer" | "double" | "string";
|
99584
|
+
};
|
98835
99585
|
/**
|
98836
99586
|
* Resource type definition for `AWS::LookoutEquipment::InferenceScheduler`.
|
98837
99587
|
* Resource schema for LookoutEquipment InferenceScheduler.
|
@@ -99627,6 +100377,7 @@ export type M2EnvironmentProps = {
|
|
99627
100377
|
* @pattern `^[A-Za-z0-9][A-Za-z0-9_\-]{1,59}$`
|
99628
100378
|
*/
|
99629
100379
|
Name: string;
|
100380
|
+
NetworkType?: M2EnvironmentNetworkType;
|
99630
100381
|
/**
|
99631
100382
|
* Configures a desired maintenance window for the environment. If you do not provide a value, a random system-generated value will be assigned.
|
99632
100383
|
* @pattern `^\S{1,50}$`
|
@@ -99721,6 +100472,11 @@ export type M2EnvironmentHighAvailabilityConfig = {
|
|
99721
100472
|
*/
|
99722
100473
|
DesiredCapacity: number;
|
99723
100474
|
};
|
100475
|
+
/**
|
100476
|
+
* Type definition for `AWS::M2::Environment.NetworkType`.
|
100477
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-m2-environment-networktype.html}
|
100478
|
+
*/
|
100479
|
+
export type M2EnvironmentNetworkType = "ipv4" | "dual";
|
99724
100480
|
/**
|
99725
100481
|
* Type definition for `AWS::M2::Environment.StorageConfiguration`.
|
99726
100482
|
* Defines the storage configuration for an environment.
|
@@ -110666,6 +111422,139 @@ export type NetworkManagerDeviceTag = {
|
|
110666
111422
|
*/
|
110667
111423
|
Value: string;
|
110668
111424
|
};
|
111425
|
+
/**
|
111426
|
+
* AWS::NetworkManager::DirectConnectGatewayAttachment Resource Type
|
111427
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html}
|
111428
|
+
*/
|
111429
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProps = {
|
111430
|
+
/**
|
111431
|
+
* The ID of a core network for the Direct Connect Gateway attachment.
|
111432
|
+
*/
|
111433
|
+
CoreNetworkId: string;
|
111434
|
+
/**
|
111435
|
+
* The ARN of the Direct Connect Gateway.
|
111436
|
+
*/
|
111437
|
+
DirectConnectGatewayArn: string;
|
111438
|
+
/**
|
111439
|
+
* The Regions where the edges are located.
|
111440
|
+
*/
|
111441
|
+
EdgeLocations: string[];
|
111442
|
+
/**
|
111443
|
+
* The attachment to move from one network function group to another.
|
111444
|
+
*/
|
111445
|
+
ProposedNetworkFunctionGroupChange?: NetworkManagerDirectConnectGatewayAttachmentProposedNetworkFunctionGroupChange;
|
111446
|
+
/**
|
111447
|
+
* The attachment to move from one segment to another.
|
111448
|
+
*/
|
111449
|
+
ProposedSegmentChange?: NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange;
|
111450
|
+
/**
|
111451
|
+
* Tags for the attachment.
|
111452
|
+
*/
|
111453
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111454
|
+
};
|
111455
|
+
/**
|
111456
|
+
* Attribute type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment`.
|
111457
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-directconnectgatewayattachment.html#aws-resource-networkmanager-directconnectgatewayattachment-return-values}
|
111458
|
+
*/
|
111459
|
+
export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
|
111460
|
+
/**
|
111461
|
+
* Id of the attachment.
|
111462
|
+
*/
|
111463
|
+
AttachmentId: string;
|
111464
|
+
/**
|
111465
|
+
* The policy rule number associated with the attachment.
|
111466
|
+
*/
|
111467
|
+
AttachmentPolicyRuleNumber: number;
|
111468
|
+
/**
|
111469
|
+
* Attachment type.
|
111470
|
+
*/
|
111471
|
+
AttachmentType: string;
|
111472
|
+
/**
|
111473
|
+
* The ARN of a core network for the Direct Connect Gateway attachment.
|
111474
|
+
*/
|
111475
|
+
CoreNetworkArn: string;
|
111476
|
+
/**
|
111477
|
+
* Creation time of the attachment.
|
111478
|
+
*/
|
111479
|
+
CreatedAt: string;
|
111480
|
+
/**
|
111481
|
+
* The name of the network function group attachment.
|
111482
|
+
*/
|
111483
|
+
NetworkFunctionGroupName: string;
|
111484
|
+
/**
|
111485
|
+
* Owner account of the attachment.
|
111486
|
+
*/
|
111487
|
+
OwnerAccountId: string;
|
111488
|
+
/**
|
111489
|
+
* The ARN of the Resource.
|
111490
|
+
*/
|
111491
|
+
ResourceArn: string;
|
111492
|
+
/**
|
111493
|
+
* The name of the segment attachment..
|
111494
|
+
*/
|
111495
|
+
SegmentName: string;
|
111496
|
+
/**
|
111497
|
+
* State of the attachment.
|
111498
|
+
*/
|
111499
|
+
State: string;
|
111500
|
+
/**
|
111501
|
+
* Last update time of the attachment.
|
111502
|
+
*/
|
111503
|
+
UpdatedAt: string;
|
111504
|
+
};
|
111505
|
+
/**
|
111506
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChange`.
|
111507
|
+
* The attachment to move from one network function group to another.
|
111508
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposednetworkfunctiongroupchange.html}
|
111509
|
+
*/
|
111510
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProposedNetworkFunctionGroupChange = {
|
111511
|
+
/**
|
111512
|
+
* The rule number in the policy document that applies to this change.
|
111513
|
+
*/
|
111514
|
+
AttachmentPolicyRuleNumber?: number;
|
111515
|
+
/**
|
111516
|
+
* The name of the network function group to change.
|
111517
|
+
*/
|
111518
|
+
NetworkFunctionGroupName?: string;
|
111519
|
+
/**
|
111520
|
+
* The key-value tags that changed for the network function group.
|
111521
|
+
*/
|
111522
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111523
|
+
};
|
111524
|
+
/**
|
111525
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.ProposedSegmentChange`.
|
111526
|
+
* The attachment to move from one segment to another.
|
111527
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-proposedsegmentchange.html}
|
111528
|
+
*/
|
111529
|
+
export type NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange = {
|
111530
|
+
/**
|
111531
|
+
* The rule number in the policy document that applies to this change.
|
111532
|
+
*/
|
111533
|
+
AttachmentPolicyRuleNumber?: number;
|
111534
|
+
/**
|
111535
|
+
* The name of the segment to change.
|
111536
|
+
*/
|
111537
|
+
SegmentName?: string;
|
111538
|
+
/**
|
111539
|
+
* The key-value tags that changed for the segment.
|
111540
|
+
*/
|
111541
|
+
Tags?: NetworkManagerDirectConnectGatewayAttachmentTag[];
|
111542
|
+
};
|
111543
|
+
/**
|
111544
|
+
* Type definition for `AWS::NetworkManager::DirectConnectGatewayAttachment.Tag`.
|
111545
|
+
* A key-value pair to associate with a resource.
|
111546
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-directconnectgatewayattachment-tag.html}
|
111547
|
+
*/
|
111548
|
+
export type NetworkManagerDirectConnectGatewayAttachmentTag = {
|
111549
|
+
/**
|
111550
|
+
* 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 -.
|
111551
|
+
*/
|
111552
|
+
Key: string;
|
111553
|
+
/**
|
111554
|
+
* 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 -.
|
111555
|
+
*/
|
111556
|
+
Value: string;
|
111557
|
+
};
|
110669
111558
|
/**
|
110670
111559
|
* The AWS::NetworkManager::GlobalNetwork type specifies a global network of the user's account
|
110671
111560
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-globalnetwork.html}
|
@@ -113859,9 +114748,9 @@ export type OrganizationsPolicyProps = {
|
|
113859
114748
|
*/
|
113860
114749
|
TargetIds?: string[];
|
113861
114750
|
/**
|
113862
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY
|
114751
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, CHATBOT_POLICY, RESOURCE_CONTROL_POLICY,DECLARATIVE_POLICY_EC2
|
113863
114752
|
*/
|
113864
|
-
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY";
|
114753
|
+
Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2";
|
113865
114754
|
};
|
113866
114755
|
/**
|
113867
114756
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
@@ -148113,16 +149002,47 @@ export type RAMPermissionTag = {
|
|
148113
149002
|
Value: string;
|
148114
149003
|
};
|
148115
149004
|
/**
|
148116
|
-
* Resource
|
149005
|
+
* Resource type definition for AWS::RAM::ResourceShare
|
148117
149006
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html}
|
148118
149007
|
*/
|
148119
149008
|
export type RAMResourceShareProps = {
|
149009
|
+
/**
|
149010
|
+
* Specifies whether principals outside your organization in AWS Organizations can be associated with a resource share. A value of `true` lets you share with individual AWS accounts that are not in your organization. A value of `false` only has meaning if your account is a member of an AWS Organization. The default value is `true`.
|
149011
|
+
*/
|
148120
149012
|
AllowExternalPrincipals?: boolean;
|
149013
|
+
/**
|
149014
|
+
* Specifies the name of the resource share.
|
149015
|
+
*/
|
148121
149016
|
Name: string;
|
149017
|
+
/**
|
149018
|
+
* Specifies the [Amazon Resource Names (ARNs)](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) of the AWS RAM permission to associate with the resource share. If you do not specify an ARN for the permission, AWS RAM automatically attaches the default version of the permission for each resource type. You can associate only one permission with each resource type included in the resource share.
|
149019
|
+
*/
|
148122
149020
|
PermissionArns?: string[];
|
149021
|
+
/**
|
149022
|
+
* Specifies the principals to associate with the resource share. The possible values are:
|
149023
|
+
|
149024
|
+
- An AWS account ID
|
149025
|
+
|
149026
|
+
- An Amazon Resource Name (ARN) of an organization in AWS Organizations
|
149027
|
+
|
149028
|
+
- An ARN of an organizational unit (OU) in AWS Organizations
|
149029
|
+
|
149030
|
+
- An ARN of an IAM role
|
149031
|
+
|
149032
|
+
- An ARN of an IAM user
|
149033
|
+
*/
|
148123
149034
|
Principals?: string[];
|
149035
|
+
/**
|
149036
|
+
* Specifies a list of one or more ARNs of the resources to associate with the resource share.
|
149037
|
+
*/
|
148124
149038
|
ResourceArns?: string[];
|
149039
|
+
/**
|
149040
|
+
* Specifies from which source accounts the service principal has access to the resources in this resource share.
|
149041
|
+
*/
|
148125
149042
|
Sources?: string[];
|
149043
|
+
/**
|
149044
|
+
* Specifies one or more tags to attach to the resource share itself. It doesn't attach the tags to the resources associated with the resource share.
|
149045
|
+
*/
|
148126
149046
|
Tags?: RAMResourceShareTag[];
|
148127
149047
|
};
|
148128
149048
|
/**
|
@@ -148131,14 +149051,20 @@ export type RAMResourceShareProps = {
|
|
148131
149051
|
*/
|
148132
149052
|
export type RAMResourceShareAttributes = {
|
148133
149053
|
Arn: string;
|
148134
|
-
Id: string;
|
148135
149054
|
};
|
148136
149055
|
/**
|
148137
149056
|
* Type definition for `AWS::RAM::ResourceShare.Tag`.
|
149057
|
+
* A key-value pair to associate with a resource.
|
148138
149058
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ram-resourceshare-tag.html}
|
148139
149059
|
*/
|
148140
149060
|
export type RAMResourceShareTag = {
|
149061
|
+
/**
|
149062
|
+
* 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 -.
|
149063
|
+
*/
|
148141
149064
|
Key: string;
|
149065
|
+
/**
|
149066
|
+
* 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 -.
|
149067
|
+
*/
|
148142
149068
|
Value: string;
|
148143
149069
|
};
|
148144
149070
|
/**
|
@@ -148278,18 +149204,19 @@ export type RbinRuleUnlockDelay = {
|
|
148278
149204
|
UnlockDelayValue?: number;
|
148279
149205
|
};
|
148280
149206
|
/**
|
148281
|
-
*
|
149207
|
+
* Resource type definition for `AWS::RDS::CustomDBEngineVersion`.
|
149208
|
+
* Creates a custom DB engine version (CEV).
|
148282
149209
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html}
|
148283
149210
|
*/
|
148284
149211
|
export type RDSCustomDBEngineVersionProps = {
|
148285
149212
|
/**
|
148286
|
-
* The name of an Amazon S3 bucket that contains database installation files for your CEV. For example, a valid bucket name is
|
149213
|
+
* 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``.
|
148287
149214
|
* @minLength `3`
|
148288
149215
|
* @maxLength `63`
|
148289
149216
|
*/
|
148290
149217
|
DatabaseInstallationFilesS3BucketName?: string;
|
148291
149218
|
/**
|
148292
|
-
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is
|
149219
|
+
* 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.
|
148293
149220
|
* @minLength `1`
|
148294
149221
|
* @maxLength `255`
|
148295
149222
|
*/
|
@@ -148301,47 +149228,57 @@ export type RDSCustomDBEngineVersionProps = {
|
|
148301
149228
|
*/
|
148302
149229
|
Description?: string;
|
148303
149230
|
/**
|
148304
|
-
|
148305
|
-
|
148306
|
-
|
148307
|
-
|
149231
|
+
* The database engine to use for your custom engine version (CEV).
|
149232
|
+
Valid values:
|
149233
|
+
+ ``custom-oracle-ee``
|
149234
|
+
+ ``custom-oracle-ee-cdb``
|
149235
|
+
* @minLength `1`
|
149236
|
+
* @maxLength `35`
|
149237
|
+
*/
|
148308
149238
|
Engine: string;
|
148309
149239
|
/**
|
148310
|
-
* The name of your CEV. The name format is
|
149240
|
+
* 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.
|
149241
|
+
*Constraints:* Minimum length is 1. Maximum length is 60.
|
149242
|
+
*Pattern:* ``^[a-z0-9_.-]{1,60$``}
|
148311
149243
|
* @minLength `1`
|
148312
149244
|
* @maxLength `60`
|
148313
149245
|
*/
|
148314
149246
|
EngineVersion: string;
|
148315
149247
|
/**
|
148316
|
-
*
|
149248
|
+
* A value that indicates the ID of the AMI.
|
148317
149249
|
*/
|
148318
149250
|
ImageId?: string;
|
148319
149251
|
/**
|
148320
|
-
|
148321
|
-
|
148322
|
-
|
148323
|
-
|
149252
|
+
* The AWS KMS key identifier for an encrypted CEV. A symmetric encryption KMS key is required for RDS Custom, but optional for Amazon RDS.
|
149253
|
+
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*.
|
149254
|
+
You can choose the same symmetric encryption key when you create a CEV and a DB instance, or choose different keys.
|
149255
|
+
* @minLength `1`
|
149256
|
+
* @maxLength `2048`
|
149257
|
+
*/
|
148324
149258
|
KMSKeyId?: string;
|
148325
149259
|
/**
|
148326
|
-
|
148327
|
-
|
148328
|
-
|
148329
|
-
|
149260
|
+
* 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.
|
149261
|
+
The following JSON fields are valid:
|
149262
|
+
+ 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.
|
149263
|
+
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*.
|
149264
|
+
* @minLength `1`
|
149265
|
+
* @maxLength `51000`
|
149266
|
+
*/
|
148330
149267
|
Manifest?: string;
|
148331
149268
|
/**
|
148332
|
-
* The
|
149269
|
+
* 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``.
|
148333
149270
|
*/
|
148334
149271
|
SourceCustomDbEngineVersionIdentifier?: string;
|
148335
149272
|
/**
|
148336
|
-
*
|
149273
|
+
* A value that indicates the status of a custom engine version (CEV).
|
148337
149274
|
*/
|
148338
149275
|
Status?: "available" | "inactive" | "inactive-except-restore";
|
148339
149276
|
/**
|
148340
|
-
*
|
149277
|
+
* 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.*
|
148341
149278
|
*/
|
148342
149279
|
Tags?: RDSCustomDBEngineVersionTag[];
|
148343
149280
|
/**
|
148344
|
-
*
|
149281
|
+
* 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``.
|
148345
149282
|
*/
|
148346
149283
|
UseAwsProvidedLatestImage?: boolean;
|
148347
149284
|
};
|
@@ -148350,25 +149287,23 @@ export type RDSCustomDBEngineVersionProps = {
|
|
148350
149287
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-customdbengineversion.html#aws-resource-rds-customdbengineversion-return-values}
|
148351
149288
|
*/
|
148352
149289
|
export type RDSCustomDBEngineVersionAttributes = {
|
148353
|
-
/**
|
148354
|
-
* The ARN of the custom engine version.
|
148355
|
-
*/
|
148356
149290
|
DBEngineVersionArn: string;
|
148357
149291
|
};
|
148358
149292
|
/**
|
148359
149293
|
* Type definition for `AWS::RDS::CustomDBEngineVersion.Tag`.
|
148360
|
-
*
|
149294
|
+
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
149295
|
+
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*.
|
148361
149296
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-customdbengineversion-tag.html}
|
148362
149297
|
*/
|
148363
149298
|
export type RDSCustomDBEngineVersionTag = {
|
148364
149299
|
/**
|
148365
|
-
*
|
149300
|
+
* 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}_.:/=+\\-@]*)$").
|
148366
149301
|
* @minLength `1`
|
148367
149302
|
* @maxLength `128`
|
148368
149303
|
*/
|
148369
149304
|
Key: string;
|
148370
149305
|
/**
|
148371
|
-
*
|
149306
|
+
* 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}_.:/=+\\-@]*)$").
|
148372
149307
|
* @minLength `0`
|
148373
149308
|
* @maxLength `256`
|
148374
149309
|
*/
|
@@ -151897,6 +152832,10 @@ export type RedshiftServerlessWorkgroupProps = {
|
|
151897
152832
|
* The custom port to use when connecting to a workgroup. Valid port ranges are 5431-5455 and 8191-8215. The default is 5439.
|
151898
152833
|
*/
|
151899
152834
|
Port?: number;
|
152835
|
+
/**
|
152836
|
+
* A property that represents the price performance target settings for the workgroup.
|
152837
|
+
*/
|
152838
|
+
PricePerformanceTarget?: RedshiftServerlessWorkgroupPerformanceTarget;
|
151900
152839
|
/**
|
151901
152840
|
* A value that specifies whether the workgroup can be accessible from a public network.
|
151902
152841
|
*/
|
@@ -151988,6 +152927,14 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
151988
152927
|
* @pattern `^[a-z0-9-]+$`
|
151989
152928
|
*/
|
151990
152929
|
NamespaceName: string;
|
152930
|
+
PricePerformanceTarget: {
|
152931
|
+
/**
|
152932
|
+
* @min `1`
|
152933
|
+
* @max `100`
|
152934
|
+
*/
|
152935
|
+
Level: number;
|
152936
|
+
Status: RedshiftServerlessWorkgroupPerformanceTargetStatus;
|
152937
|
+
};
|
151991
152938
|
PubliclyAccessible: boolean;
|
151992
152939
|
SecurityGroupIds: string[];
|
151993
152940
|
Status: RedshiftServerlessWorkgroupWorkgroupStatus;
|
@@ -152002,6 +152949,23 @@ export type RedshiftServerlessWorkgroupAttributes = {
|
|
152002
152949
|
WorkgroupName: string;
|
152003
152950
|
};
|
152004
152951
|
};
|
152952
|
+
/**
|
152953
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTarget`.
|
152954
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetarget.html}
|
152955
|
+
*/
|
152956
|
+
export type RedshiftServerlessWorkgroupPerformanceTarget = {
|
152957
|
+
/**
|
152958
|
+
* @min `1`
|
152959
|
+
* @max `100`
|
152960
|
+
*/
|
152961
|
+
Level?: number;
|
152962
|
+
Status?: RedshiftServerlessWorkgroupPerformanceTargetStatus;
|
152963
|
+
};
|
152964
|
+
/**
|
152965
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.PerformanceTargetStatus`.
|
152966
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-performancetargetstatus.html}
|
152967
|
+
*/
|
152968
|
+
export type RedshiftServerlessWorkgroupPerformanceTargetStatus = "ENABLED" | "DISABLED";
|
152005
152969
|
/**
|
152006
152970
|
* Type definition for `AWS::RedshiftServerless::Workgroup.Tag`.
|
152007
152971
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-tag.html}
|
@@ -152018,6 +152982,13 @@ export type RedshiftServerlessWorkgroupTag = {
|
|
152018
152982
|
*/
|
152019
152983
|
Value: string;
|
152020
152984
|
};
|
152985
|
+
/**
|
152986
|
+
* Type definition for `AWS::RedshiftServerless::Workgroup.Workgroup`.
|
152987
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html}
|
152988
|
+
*/
|
152989
|
+
export type RedshiftServerlessWorkgroupWorkgroup = {
|
152990
|
+
PricePerformanceTarget?: RedshiftServerlessWorkgroupPerformanceTarget;
|
152991
|
+
};
|
152021
152992
|
/**
|
152022
152993
|
* Type definition for `AWS::RedshiftServerless::Workgroup.WorkgroupStatus`.
|
152023
152994
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroupstatus.html}
|
@@ -158272,21 +159243,21 @@ export type S3ExpressDirectoryBucketProps = {
|
|
158272
159243
|
*/
|
158273
159244
|
BucketEncryption?: S3ExpressDirectoryBucketBucketEncryption;
|
158274
159245
|
/**
|
158275
|
-
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format 'bucket_base_name--
|
159246
|
+
* Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone or Local Zone. The bucket name must also follow the format 'bucket_base_name--zone_id--x-s3'. The zone_id can be the ID of an Availability Zone or a Local Zone. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the bucket name.
|
158276
159247
|
* @maxLength `63`
|
158277
159248
|
* @pattern `^[a-z0-9][a-z0-9//.//-]*[a-z0-9]$`
|
158278
159249
|
*/
|
158279
159250
|
BucketName?: string;
|
158280
159251
|
/**
|
158281
|
-
* Specifies the number of Availability Zone that's used for redundancy for the bucket.
|
159252
|
+
* Specifies the number of Availability Zone or Local Zone that's used for redundancy for the bucket.
|
158282
159253
|
*/
|
158283
|
-
DataRedundancy: "SingleAvailabilityZone";
|
159254
|
+
DataRedundancy: "SingleAvailabilityZone" | "SingleLocalZone";
|
158284
159255
|
/**
|
158285
159256
|
* Lifecycle rules that define how Amazon S3 Express manages objects during their lifetime.
|
158286
159257
|
*/
|
158287
159258
|
LifecycleConfiguration?: S3ExpressDirectoryBucketLifecycleConfiguration;
|
158288
159259
|
/**
|
158289
|
-
* Specifies the
|
159260
|
+
* Specifies the Zone ID of the Availability Zone or Local Zone where the directory bucket will be created. An example Availability Zone ID value is 'use1-az5'.
|
158290
159261
|
*/
|
158291
159262
|
LocationName: string;
|
158292
159263
|
};
|
@@ -158300,7 +159271,7 @@ export type S3ExpressDirectoryBucketAttributes = {
|
|
158300
159271
|
*/
|
158301
159272
|
Arn: string;
|
158302
159273
|
/**
|
158303
|
-
* Returns the code for the Availability Zone where the directory bucket was created.
|
159274
|
+
* Returns the code for the Availability Zone or Local Zone where the directory bucket was created. An example for the code of an Availability Zone is 'us-east-1f'.
|
158304
159275
|
*/
|
158305
159276
|
AvailabilityZoneName: string;
|
158306
159277
|
};
|
@@ -186645,6 +187616,7 @@ export interface ResourceTypes {
|
|
186645
187616
|
"AWS::IoT::CACertificate": IoTCACertificateProps;
|
186646
187617
|
"AWS::IoT::Certificate": IoTCertificateProps;
|
186647
187618
|
"AWS::IoT::CertificateProvider": IoTCertificateProviderProps;
|
187619
|
+
"AWS::IoT::Command": IoTCommandProps;
|
186648
187620
|
"AWS::IoT::CustomMetric": IoTCustomMetricProps;
|
186649
187621
|
"AWS::IoT::Dimension": IoTDimensionProps;
|
186650
187622
|
"AWS::IoT::DomainConfiguration": IoTDomainConfigurationProps;
|
@@ -186800,6 +187772,7 @@ export interface ResourceTypes {
|
|
186800
187772
|
"AWS::Logs::QueryDefinition": LogsQueryDefinitionProps;
|
186801
187773
|
"AWS::Logs::ResourcePolicy": LogsResourcePolicyProps;
|
186802
187774
|
"AWS::Logs::SubscriptionFilter": LogsSubscriptionFilterProps;
|
187775
|
+
"AWS::Logs::Transformer": LogsTransformerProps;
|
186803
187776
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerProps;
|
186804
187777
|
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertProps;
|
186805
187778
|
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
|
@@ -186889,6 +187862,7 @@ export interface ResourceTypes {
|
|
186889
187862
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
|
186890
187863
|
"AWS::NetworkManager::CustomerGatewayAssociation": NetworkManagerCustomerGatewayAssociationProps;
|
186891
187864
|
"AWS::NetworkManager::Device": NetworkManagerDeviceProps;
|
187865
|
+
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentProps;
|
186892
187866
|
"AWS::NetworkManager::GlobalNetwork": NetworkManagerGlobalNetworkProps;
|
186893
187867
|
"AWS::NetworkManager::Link": NetworkManagerLinkProps;
|
186894
187868
|
"AWS::NetworkManager::LinkAssociation": NetworkManagerLinkAssociationProps;
|
@@ -187926,6 +188900,7 @@ export interface AttributeTypes {
|
|
187926
188900
|
"AWS::IoT::CACertificate": IoTCACertificateAttributes;
|
187927
188901
|
"AWS::IoT::Certificate": IoTCertificateAttributes;
|
187928
188902
|
"AWS::IoT::CertificateProvider": IoTCertificateProviderAttributes;
|
188903
|
+
"AWS::IoT::Command": IoTCommandAttributes;
|
187929
188904
|
"AWS::IoT::CustomMetric": IoTCustomMetricAttributes;
|
187930
188905
|
"AWS::IoT::Dimension": IoTDimensionAttributes;
|
187931
188906
|
"AWS::IoT::DomainConfiguration": IoTDomainConfigurationAttributes;
|
@@ -188147,6 +189122,7 @@ export interface AttributeTypes {
|
|
188147
189122
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerAttributes;
|
188148
189123
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkAttributes;
|
188149
189124
|
"AWS::NetworkManager::Device": NetworkManagerDeviceAttributes;
|
189125
|
+
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentAttributes;
|
188150
189126
|
"AWS::NetworkManager::GlobalNetwork": NetworkManagerGlobalNetworkAttributes;
|
188151
189127
|
"AWS::NetworkManager::Link": NetworkManagerLinkAttributes;
|
188152
189128
|
"AWS::NetworkManager::Site": NetworkManagerSiteAttributes;
|
@@ -189217,6 +190193,7 @@ export declare const ResourceType: {
|
|
189217
190193
|
readonly IoTCACertificate: "AWS::IoT::CACertificate";
|
189218
190194
|
readonly IoTCertificate: "AWS::IoT::Certificate";
|
189219
190195
|
readonly IoTCertificateProvider: "AWS::IoT::CertificateProvider";
|
190196
|
+
readonly IoTCommand: "AWS::IoT::Command";
|
189220
190197
|
readonly IoTCustomMetric: "AWS::IoT::CustomMetric";
|
189221
190198
|
readonly IoTDimension: "AWS::IoT::Dimension";
|
189222
190199
|
readonly IoTDomainConfiguration: "AWS::IoT::DomainConfiguration";
|
@@ -189372,6 +190349,7 @@ export declare const ResourceType: {
|
|
189372
190349
|
readonly LogsQueryDefinition: "AWS::Logs::QueryDefinition";
|
189373
190350
|
readonly LogsResourcePolicy: "AWS::Logs::ResourcePolicy";
|
189374
190351
|
readonly LogsSubscriptionFilter: "AWS::Logs::SubscriptionFilter";
|
190352
|
+
readonly LogsTransformer: "AWS::Logs::Transformer";
|
189375
190353
|
readonly LookoutEquipmentInferenceScheduler: "AWS::LookoutEquipment::InferenceScheduler";
|
189376
190354
|
readonly LookoutMetricsAlert: "AWS::LookoutMetrics::Alert";
|
189377
190355
|
readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
|
@@ -189461,6 +190439,7 @@ export declare const ResourceType: {
|
|
189461
190439
|
readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
|
189462
190440
|
readonly NetworkManagerCustomerGatewayAssociation: "AWS::NetworkManager::CustomerGatewayAssociation";
|
189463
190441
|
readonly NetworkManagerDevice: "AWS::NetworkManager::Device";
|
190442
|
+
readonly NetworkManagerDirectConnectGatewayAttachment: "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
189464
190443
|
readonly NetworkManagerGlobalNetwork: "AWS::NetworkManager::GlobalNetwork";
|
189465
190444
|
readonly NetworkManagerLink: "AWS::NetworkManager::Link";
|
189466
190445
|
readonly NetworkManagerLinkAssociation: "AWS::NetworkManager::LinkAssociation";
|