@awboost/cfn-resource-types 0.1.90 → 0.1.91

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.
@@ -67,9 +67,10 @@ export type AutoScalingScalingPolicyAttributes = {
67
67
  */
68
68
  export type CustomizedMetricSpecification = {
69
69
  Dimensions?: MetricDimension[];
70
- MetricName: string;
71
- Namespace: string;
72
- Statistic: string;
70
+ MetricName?: string;
71
+ Metrics?: TargetTrackingMetricDataQuery[];
72
+ Namespace?: string;
73
+ Statistic?: string;
73
74
  Unit?: string;
74
75
  };
75
76
  /**
@@ -205,6 +206,26 @@ export type TargetTrackingConfiguration = {
205
206
  PredefinedMetricSpecification?: PredefinedMetricSpecification;
206
207
  TargetValue: number;
207
208
  };
209
+ /**
210
+ * Type definition for `AWS::AutoScaling::ScalingPolicy.TargetTrackingMetricDataQuery`.
211
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingmetricdataquery.html}
212
+ */
213
+ export type TargetTrackingMetricDataQuery = {
214
+ Expression?: string;
215
+ Id: string;
216
+ Label?: string;
217
+ MetricStat?: TargetTrackingMetricStat;
218
+ ReturnData?: boolean;
219
+ };
220
+ /**
221
+ * Type definition for `AWS::AutoScaling::ScalingPolicy.TargetTrackingMetricStat`.
222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingmetricstat.html}
223
+ */
224
+ export type TargetTrackingMetricStat = {
225
+ Metric: Metric;
226
+ Stat: string;
227
+ Unit?: string;
228
+ };
208
229
  /**
209
230
  * The AWS::AutoScaling::ScalingPolicy resource specifies an Amazon EC2 Auto Scaling scaling policy so that the Auto Scaling group can scale the number of instances available for your application.
210
231
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-scalingpolicy.html}
@@ -125,7 +125,7 @@ export type X12TransactionSet = "X12_110" | "X12_180" | "X12_204" | "X12_210" |
125
125
  * Type definition for `AWS::B2BI::Capability.X12Version`.
126
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-x12version.html}
127
127
  */
128
- export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010";
128
+ export type X12Version = "VERSION_4010" | "VERSION_4030" | "VERSION_5010" | "VERSION_5010_HIPAA";
129
129
  /**
130
130
  * Definition of AWS::B2BI::Capability Resource Type
131
131
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-capability.html}
@@ -85,6 +85,12 @@ export type Actions = {
85
85
  * @maxLength `1`
86
86
  */
87
87
  SendNotificationActions?: SendNotificationAction[];
88
+ /**
89
+ * This action will submit an auto contact evaluation when a rule is triggered.
90
+ * @minLength `1`
91
+ * @maxLength `1`
92
+ */
93
+ SubmitAutoEvaluationActions?: SubmitAutoEvaluationAction[];
88
94
  /**
89
95
  * This action will generate a task when a rule is triggered.
90
96
  * @minLength `1`
@@ -245,6 +251,18 @@ export type SendNotificationAction = {
245
251
  */
246
252
  Subject?: string;
247
253
  };
254
+ /**
255
+ * Type definition for `AWS::Connect::Rule.SubmitAutoEvaluationAction`.
256
+ * The definition of submit auto evaluation action.
257
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-rule-submitautoevaluationaction.html}
258
+ */
259
+ export type SubmitAutoEvaluationAction = {
260
+ /**
261
+ * The Amazon Resource Name (ARN) of the evaluation form.
262
+ * @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*evaluation-form/[-a-zA-Z0-9]*$`
263
+ */
264
+ EvaluationFormArn: string;
265
+ };
248
266
  /**
249
267
  * Type definition for `AWS::Connect::Rule.Tag`.
250
268
  * A key-value pair to associate with a resource.
@@ -5,23 +5,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html}
6
6
  */
7
7
  export type EC2TransitGatewayRouteProperties = {
8
+ /**
9
+ * Indicates whether to drop traffic that matches this route.
10
+ */
8
11
  Blackhole?: boolean;
9
- DestinationCidrBlock?: string;
12
+ /**
13
+ * The CIDR range used for destination matches. Routing decisions are based on the most specific match.
14
+ */
15
+ DestinationCidrBlock: string;
16
+ /**
17
+ * The ID of transit gateway attachment.
18
+ */
10
19
  TransitGatewayAttachmentId?: string;
20
+ /**
21
+ * The ID of transit gateway route table.
22
+ */
11
23
  TransitGatewayRouteTableId: string;
12
24
  };
13
- /**
14
- * Attribute type definition for `AWS::EC2::TransitGatewayRoute`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html#aws-resource-ec2-transitgatewayroute-return-values}
16
- */
17
- export type EC2TransitGatewayRouteAttributes = {
18
- Id: string;
19
- };
20
25
  /**
21
26
  * Resource Type definition for AWS::EC2::TransitGatewayRoute
22
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayroute.html}
23
28
  */
24
- export declare class EC2TransitGatewayRoute extends $Resource<"AWS::EC2::TransitGatewayRoute", EC2TransitGatewayRouteProperties, EC2TransitGatewayRouteAttributes> {
29
+ export declare class EC2TransitGatewayRoute extends $Resource<"AWS::EC2::TransitGatewayRoute", EC2TransitGatewayRouteProperties, Record<string, never>> {
25
30
  static readonly Type = "AWS::EC2::TransitGatewayRoute";
26
31
  constructor(logicalId: string, properties: EC2TransitGatewayRouteProperties, options?: $ResourceOptions);
27
32
  }
@@ -207,6 +207,28 @@ export type DeadLetterConfig = {
207
207
  */
208
208
  Arn?: string;
209
209
  };
210
+ /**
211
+ * Type definition for `AWS::Pipes::Pipe.DimensionMapping`.
212
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionmapping.html}
213
+ */
214
+ export type DimensionMapping = {
215
+ /**
216
+ * @minLength `1`
217
+ * @maxLength `256`
218
+ */
219
+ DimensionName: string;
220
+ /**
221
+ * @minLength `1`
222
+ * @maxLength `2048`
223
+ */
224
+ DimensionValue: string;
225
+ DimensionValueType: DimensionValueType;
226
+ };
227
+ /**
228
+ * Type definition for `AWS::Pipes::Pipe.DimensionValueType`.
229
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dimensionvaluetype.html}
230
+ */
231
+ export type DimensionValueType = "VARCHAR";
210
232
  /**
211
233
  * Type definition for `AWS::Pipes::Pipe.DynamoDBStreamStartPosition`.
212
234
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-dynamodbstreamstartposition.html}
@@ -302,6 +324,11 @@ export type EcsTaskOverride = {
302
324
  */
303
325
  TaskRoleArn?: string;
304
326
  };
327
+ /**
328
+ * Type definition for `AWS::Pipes::Pipe.EpochTimeUnit`.
329
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-epochtimeunit.html}
330
+ */
331
+ export type EpochTimeUnit = "MILLISECONDS" | "SECONDS" | "MICROSECONDS" | "NANOSECONDS";
305
332
  /**
306
333
  * Type definition for `AWS::Pipes::Pipe.Filter`.
307
334
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filter.html}
@@ -361,6 +388,11 @@ export type LaunchType = "EC2" | "FARGATE" | "EXTERNAL";
361
388
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-loglevel.html}
362
389
  */
363
390
  export type LogLevel = "OFF" | "ERROR" | "INFO" | "TRACE";
391
+ /**
392
+ * Type definition for `AWS::Pipes::Pipe.MeasureValueType`.
393
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-measurevaluetype.html}
394
+ */
395
+ export type MeasureValueType = "DOUBLE" | "BIGINT" | "VARCHAR" | "BOOLEAN" | "TIMESTAMP";
364
396
  /**
365
397
  * Type definition for `AWS::Pipes::Pipe.MQBrokerAccessCredentials`.
366
398
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mqbrokeraccesscredentials.html}
@@ -400,6 +432,39 @@ export type MSKAccessCredentials = {
400
432
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mskstartposition.html}
401
433
  */
402
434
  export type MSKStartPosition = "TRIM_HORIZON" | "LATEST";
435
+ /**
436
+ * Type definition for `AWS::Pipes::Pipe.MultiMeasureAttributeMapping`.
437
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasureattributemapping.html}
438
+ */
439
+ export type MultiMeasureAttributeMapping = {
440
+ /**
441
+ * @minLength `1`
442
+ * @maxLength `2048`
443
+ */
444
+ MeasureValue: string;
445
+ MeasureValueType: MeasureValueType;
446
+ /**
447
+ * @minLength `1`
448
+ * @maxLength `256`
449
+ */
450
+ MultiMeasureAttributeName: string;
451
+ };
452
+ /**
453
+ * Type definition for `AWS::Pipes::Pipe.MultiMeasureMapping`.
454
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-multimeasuremapping.html}
455
+ */
456
+ export type MultiMeasureMapping = {
457
+ /**
458
+ * @minLength `1`
459
+ * @maxLength `256`
460
+ */
461
+ MultiMeasureAttributeMappings: MultiMeasureAttributeMapping[];
462
+ /**
463
+ * @minLength `1`
464
+ * @maxLength `256`
465
+ */
466
+ MultiMeasureName: string;
467
+ };
403
468
  /**
404
469
  * Type definition for `AWS::Pipes::Pipe.NetworkConfiguration`.
405
470
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-networkconfiguration.html}
@@ -839,6 +904,7 @@ export type PipeTargetParameters = {
839
904
  SageMakerPipelineParameters?: PipeTargetSageMakerPipelineParameters;
840
905
  SqsQueueParameters?: PipeTargetSqsQueueParameters;
841
906
  StepFunctionStateMachineParameters?: PipeTargetStateMachineParameters;
907
+ TimestreamParameters?: PipeTargetTimestreamParameters;
842
908
  };
843
909
  /**
844
910
  * Type definition for `AWS::Pipes::Pipe.PipeTargetRedshiftDataParameters`.
@@ -912,6 +978,44 @@ export type PipeTargetSqsQueueParameters = {
912
978
  export type PipeTargetStateMachineParameters = {
913
979
  InvocationType?: PipeTargetInvocationType;
914
980
  };
981
+ /**
982
+ * Type definition for `AWS::Pipes::Pipe.PipeTargetTimestreamParameters`.
983
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargettimestreamparameters.html}
984
+ */
985
+ export type PipeTargetTimestreamParameters = {
986
+ /**
987
+ * @minLength `1`
988
+ * @maxLength `128`
989
+ */
990
+ DimensionMappings: DimensionMapping[];
991
+ EpochTimeUnit?: EpochTimeUnit;
992
+ /**
993
+ * @minLength `0`
994
+ * @maxLength `1024`
995
+ */
996
+ MultiMeasureMappings?: MultiMeasureMapping[];
997
+ /**
998
+ * @minLength `0`
999
+ * @maxLength `8192`
1000
+ */
1001
+ SingleMeasureMappings?: SingleMeasureMapping[];
1002
+ TimeFieldType?: TimeFieldType;
1003
+ /**
1004
+ * @minLength `1`
1005
+ * @maxLength `256`
1006
+ */
1007
+ TimeValue: string;
1008
+ /**
1009
+ * @minLength `1`
1010
+ * @maxLength `256`
1011
+ */
1012
+ TimestampFormat?: string;
1013
+ /**
1014
+ * @minLength `1`
1015
+ * @maxLength `256`
1016
+ */
1017
+ VersionValue: string;
1018
+ };
915
1019
  /**
916
1020
  * Type definition for `AWS::Pipes::Pipe.PlacementConstraint`.
917
1021
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-placementconstraint.html}
@@ -1053,6 +1157,23 @@ export type SelfManagedKafkaAccessConfigurationVpc = {
1053
1157
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-selfmanagedkafkastartposition.html}
1054
1158
  */
1055
1159
  export type SelfManagedKafkaStartPosition = "TRIM_HORIZON" | "LATEST";
1160
+ /**
1161
+ * Type definition for `AWS::Pipes::Pipe.SingleMeasureMapping`.
1162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-singlemeasuremapping.html}
1163
+ */
1164
+ export type SingleMeasureMapping = {
1165
+ /**
1166
+ * @minLength `1`
1167
+ * @maxLength `1024`
1168
+ */
1169
+ MeasureName: string;
1170
+ /**
1171
+ * @minLength `1`
1172
+ * @maxLength `2048`
1173
+ */
1174
+ MeasureValue: string;
1175
+ MeasureValueType: MeasureValueType;
1176
+ };
1056
1177
  /**
1057
1178
  * Type definition for `AWS::Pipes::Pipe.Tag`.
1058
1179
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-tag.html}
@@ -1074,6 +1195,11 @@ export type Tag = {
1074
1195
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-tagmap.html}
1075
1196
  */
1076
1197
  export type TagMap = Record<string, string>;
1198
+ /**
1199
+ * Type definition for `AWS::Pipes::Pipe.TimeFieldType`.
1200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-timefieldtype.html}
1201
+ */
1202
+ export type TimeFieldType = "EPOCH" | "TIMESTAMP_FORMAT";
1077
1203
  /**
1078
1204
  * Definition of AWS::Pipes::Pipe Resource Type
1079
1205
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pipes-pipe.html}
@@ -113,7 +113,7 @@ export type CodeEditorAppSettings = {
113
113
  /**
114
114
  * A list of custom images for use for CodeEditor apps.
115
115
  * @minLength `0`
116
- * @maxLength `30`
116
+ * @maxLength `200`
117
117
  */
118
118
  CustomImages?: CustomImage[];
119
119
  /**
@@ -332,7 +332,7 @@ export type JupyterLabAppSettings = {
332
332
  /**
333
333
  * A list of custom images for use for JupyterLab apps.
334
334
  * @minLength `0`
335
- * @maxLength `30`
335
+ * @maxLength `200`
336
336
  */
337
337
  CustomImages?: CustomImage[];
338
338
  /**
@@ -363,7 +363,7 @@ export type KernelGatewayAppSettings = {
363
363
  /**
364
364
  * A list of custom SageMaker images that are configured to run as a KernelGateway app.
365
365
  * @minLength `0`
366
- * @maxLength `30`
366
+ * @maxLength `200`
367
367
  */
368
368
  CustomImages?: CustomImage[];
369
369
  /**
@@ -408,7 +408,7 @@ export type RSessionAppSettings = {
408
408
  /**
409
409
  * A list of custom SageMaker images that are configured to run as a KernelGateway app.
410
410
  * @minLength `0`
411
- * @maxLength `30`
411
+ * @maxLength `200`
412
412
  */
413
413
  CustomImages?: CustomImage[];
414
414
  DefaultResourceSpec?: ResourceSpec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.90",
3
+ "version": "0.1.91",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },