@propulsionworks/cloudformation 0.1.40 → 0.1.42

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.
Files changed (44) hide show
  1. package/out/exports/resources.generated/aws-apigatewayv2-integration.d.ts +1 -0
  2. package/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +111 -1
  3. package/out/exports/resources.generated/aws-autoscaling-autoscalinggroup.d.ts +18 -0
  4. package/out/exports/resources.generated/aws-bedrockagentcore-memory.d.ts +106 -0
  5. package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +5 -0
  6. package/out/exports/resources.generated/aws-billing-billingview.d.ts +4 -0
  7. package/out/exports/resources.generated/aws-cases-caserule.d.ts +24 -24
  8. package/out/exports/resources.generated/aws-cases-domain.d.ts +10 -6
  9. package/out/exports/resources.generated/aws-cases-field.d.ts +10 -10
  10. package/out/exports/resources.generated/aws-cases-layout.d.ts +30 -20
  11. package/out/exports/resources.generated/aws-cases-template.d.ts +32 -18
  12. package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +13 -0
  13. package/out/exports/resources.generated/aws-connect-contactflowmodule.d.ts +2 -2
  14. package/out/exports/resources.generated/aws-dms-dataprovider.d.ts +231 -1
  15. package/out/exports/resources.generated/aws-ec2-clientvpnendpoint.d.ts +2 -0
  16. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +7 -1
  17. package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -5
  18. package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +11 -1
  19. package/out/exports/resources.generated/aws-ec2-vpnconcentrator.d.ts +6 -6
  20. package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +1 -1
  21. package/out/exports/resources.generated/aws-ecr-pulltimeupdateexclusion.d.ts +2 -2
  22. package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +10 -0
  24. package/out/exports/resources.generated/aws-ecs-expressgatewayservice.d.ts +12 -0
  25. package/out/exports/resources.generated/aws-groundstation-dataflowendpointgroupv2.d.ts +42 -27
  26. package/out/exports/resources.generated/aws-iot-topicrule.d.ts +25 -0
  27. package/out/exports/resources.generated/aws-kafkaconnect-connector.d.ts +1 -1
  28. package/out/exports/resources.generated/aws-lex-bot.d.ts +6 -0
  29. package/out/exports/resources.generated/aws-logs-loggroup.d.ts +1 -0
  30. package/out/exports/resources.generated/aws-mediatailor-playbackconfiguration.d.ts +42 -0
  31. package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +10 -10
  32. package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +30 -4
  33. package/out/exports/resources.generated/aws-odb-odbpeeringconnection.d.ts +1 -1
  34. package/out/exports/resources.generated/aws-pcs-cluster.d.ts +2 -2
  35. package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +15 -2
  36. package/out/exports/resources.generated/aws-s3-storagelens.d.ts +12 -12
  37. package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +5 -5
  38. package/out/exports/resources.generated/aws-ses-multiregionendpoint.d.ts +1 -1
  39. package/out/exports/resources.generated/aws-ses-tenant.d.ts +11 -7
  40. package/out/exports/resources.generated/aws-ssm-maintenancewindowtask.d.ts +1 -1
  41. package/out/exports/resources.generated/aws-wisdom-aiprompt.d.ts +1 -1
  42. package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +18 -3
  43. package/out/exports/resources.generated/aws-workspacesweb-usersettings.d.ts +1 -0
  44. package/package.json +1 -1
@@ -34,7 +34,7 @@ export type DMSDataProviderProps = {
34
34
  * The type of database engine for the data provider. Valid values include `"aurora"` , `"aurora-postgresql"` , `"mysql"` , `"oracle"` , `"postgres"` , `"sqlserver"` , `redshift` , `mariadb` , `mongodb` , `db2` , `db2-zos` , `docdb` , and `sybase` . A value of `"aurora"` represents Amazon Aurora MySQL-Compatible Edition.
35
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-dataprovider.html#cfn-dms-dataprovider-engine}
36
36
  */
37
- Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos";
37
+ Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos" | "sybase";
38
38
  /**
39
39
  * The property describes the exact settings which can be modified
40
40
  * @default false
@@ -150,6 +150,17 @@ export type DMSDataProviderProps = {
150
150
  Port: number;
151
151
  ServerName: string;
152
152
  } | undefined;
153
+ /**
154
+ * SybaseAseSettings property identifier.
155
+ */
156
+ SybaseAseSettings?: {
157
+ CertificateArn?: string | undefined;
158
+ DatabaseName?: string | undefined;
159
+ EncryptPassword?: boolean | undefined;
160
+ Port: number;
161
+ ServerName: string;
162
+ SslMode: SybaseSslModeValue;
163
+ } | undefined;
153
164
  } | {
154
165
  /**
155
166
  * DocDbSettings property identifier.
@@ -255,6 +266,17 @@ export type DMSDataProviderProps = {
255
266
  Port: number;
256
267
  ServerName: string;
257
268
  } | undefined;
269
+ /**
270
+ * SybaseAseSettings property identifier.
271
+ */
272
+ SybaseAseSettings?: {
273
+ CertificateArn?: string | undefined;
274
+ DatabaseName?: string | undefined;
275
+ EncryptPassword?: boolean | undefined;
276
+ Port: number;
277
+ ServerName: string;
278
+ SslMode: SybaseSslModeValue;
279
+ } | undefined;
258
280
  } | {
259
281
  /**
260
282
  * DocDbSettings property identifier.
@@ -360,6 +382,17 @@ export type DMSDataProviderProps = {
360
382
  Port: number;
361
383
  ServerName: string;
362
384
  } | undefined;
385
+ /**
386
+ * SybaseAseSettings property identifier.
387
+ */
388
+ SybaseAseSettings?: {
389
+ CertificateArn?: string | undefined;
390
+ DatabaseName?: string | undefined;
391
+ EncryptPassword?: boolean | undefined;
392
+ Port: number;
393
+ ServerName: string;
394
+ SslMode: SybaseSslModeValue;
395
+ } | undefined;
363
396
  } | {
364
397
  /**
365
398
  * DocDbSettings property identifier.
@@ -465,6 +498,17 @@ export type DMSDataProviderProps = {
465
498
  Port: number;
466
499
  ServerName: string;
467
500
  } | undefined;
501
+ /**
502
+ * SybaseAseSettings property identifier.
503
+ */
504
+ SybaseAseSettings?: {
505
+ CertificateArn?: string | undefined;
506
+ DatabaseName?: string | undefined;
507
+ EncryptPassword?: boolean | undefined;
508
+ Port: number;
509
+ ServerName: string;
510
+ SslMode: SybaseSslModeValue;
511
+ } | undefined;
468
512
  } | {
469
513
  /**
470
514
  * DocDbSettings property identifier.
@@ -570,6 +614,17 @@ export type DMSDataProviderProps = {
570
614
  Port: number;
571
615
  ServerName: string;
572
616
  };
617
+ /**
618
+ * SybaseAseSettings property identifier.
619
+ */
620
+ SybaseAseSettings?: {
621
+ CertificateArn?: string | undefined;
622
+ DatabaseName?: string | undefined;
623
+ EncryptPassword?: boolean | undefined;
624
+ Port: number;
625
+ ServerName: string;
626
+ SslMode: SybaseSslModeValue;
627
+ } | undefined;
573
628
  } | {
574
629
  /**
575
630
  * DocDbSettings property identifier.
@@ -675,6 +730,17 @@ export type DMSDataProviderProps = {
675
730
  Port: number;
676
731
  ServerName: string;
677
732
  } | undefined;
733
+ /**
734
+ * SybaseAseSettings property identifier.
735
+ */
736
+ SybaseAseSettings?: {
737
+ CertificateArn?: string | undefined;
738
+ DatabaseName?: string | undefined;
739
+ EncryptPassword?: boolean | undefined;
740
+ Port: number;
741
+ ServerName: string;
742
+ SslMode: SybaseSslModeValue;
743
+ } | undefined;
678
744
  } | {
679
745
  /**
680
746
  * DocDbSettings property identifier.
@@ -780,6 +846,17 @@ export type DMSDataProviderProps = {
780
846
  Port: number;
781
847
  ServerName: string;
782
848
  } | undefined;
849
+ /**
850
+ * SybaseAseSettings property identifier.
851
+ */
852
+ SybaseAseSettings?: {
853
+ CertificateArn?: string | undefined;
854
+ DatabaseName?: string | undefined;
855
+ EncryptPassword?: boolean | undefined;
856
+ Port: number;
857
+ ServerName: string;
858
+ SslMode: SybaseSslModeValue;
859
+ } | undefined;
783
860
  } | {
784
861
  /**
785
862
  * DocDbSettings property identifier.
@@ -885,6 +962,17 @@ export type DMSDataProviderProps = {
885
962
  Port: number;
886
963
  ServerName: string;
887
964
  } | undefined;
965
+ /**
966
+ * SybaseAseSettings property identifier.
967
+ */
968
+ SybaseAseSettings?: {
969
+ CertificateArn?: string | undefined;
970
+ DatabaseName?: string | undefined;
971
+ EncryptPassword?: boolean | undefined;
972
+ Port: number;
973
+ ServerName: string;
974
+ SslMode: SybaseSslModeValue;
975
+ } | undefined;
888
976
  } | {
889
977
  /**
890
978
  * DocDbSettings property identifier.
@@ -990,6 +1078,17 @@ export type DMSDataProviderProps = {
990
1078
  Port: number;
991
1079
  ServerName: string;
992
1080
  } | undefined;
1081
+ /**
1082
+ * SybaseAseSettings property identifier.
1083
+ */
1084
+ SybaseAseSettings?: {
1085
+ CertificateArn?: string | undefined;
1086
+ DatabaseName?: string | undefined;
1087
+ EncryptPassword?: boolean | undefined;
1088
+ Port: number;
1089
+ ServerName: string;
1090
+ SslMode: SybaseSslModeValue;
1091
+ } | undefined;
993
1092
  } | {
994
1093
  /**
995
1094
  * DocDbSettings property identifier.
@@ -1095,6 +1194,133 @@ export type DMSDataProviderProps = {
1095
1194
  Port: number;
1096
1195
  ServerName: string;
1097
1196
  } | undefined;
1197
+ /**
1198
+ * SybaseAseSettings property identifier.
1199
+ */
1200
+ SybaseAseSettings?: {
1201
+ CertificateArn?: string | undefined;
1202
+ DatabaseName?: string | undefined;
1203
+ EncryptPassword?: boolean | undefined;
1204
+ Port: number;
1205
+ ServerName: string;
1206
+ SslMode: SybaseSslModeValue;
1207
+ } | undefined;
1208
+ } | {
1209
+ /**
1210
+ * DocDbSettings property identifier.
1211
+ */
1212
+ DocDbSettings?: {
1213
+ CertificateArn?: string | undefined;
1214
+ DatabaseName: string;
1215
+ Port: number;
1216
+ ServerName: string;
1217
+ SslMode?: MongoDbSslModeValue | undefined;
1218
+ } | undefined;
1219
+ /**
1220
+ * IbmDb2LuwSettings property identifier.
1221
+ */
1222
+ IbmDb2LuwSettings?: {
1223
+ CertificateArn?: string | undefined;
1224
+ DatabaseName: string;
1225
+ Port: number;
1226
+ ServerName: string;
1227
+ SslMode: Db2SslModeValue;
1228
+ } | undefined;
1229
+ /**
1230
+ * IbmDb2zOsSettings property identifier.
1231
+ */
1232
+ IbmDb2zOsSettings?: {
1233
+ CertificateArn?: string | undefined;
1234
+ DatabaseName: string;
1235
+ Port: number;
1236
+ ServerName: string;
1237
+ SslMode: Db2SslModeValue;
1238
+ } | undefined;
1239
+ /**
1240
+ * MariaDbSettings property identifier.
1241
+ */
1242
+ MariaDbSettings?: {
1243
+ CertificateArn?: string | undefined;
1244
+ Port: number;
1245
+ ServerName: string;
1246
+ SslMode: DmsSslModeValue;
1247
+ } | undefined;
1248
+ /**
1249
+ * MicrosoftSqlServerSettings property identifier.
1250
+ */
1251
+ MicrosoftSqlServerSettings?: {
1252
+ CertificateArn?: string | undefined;
1253
+ DatabaseName: string;
1254
+ Port: number;
1255
+ ServerName: string;
1256
+ SslMode: DmsSslModeValue;
1257
+ } | undefined;
1258
+ /**
1259
+ * MongoDbSettings property identifier.
1260
+ */
1261
+ MongoDbSettings?: {
1262
+ AuthMechanism?: MongoDbAuthMechanism | undefined;
1263
+ AuthSource?: string | undefined;
1264
+ AuthType?: MongoDbAuthType | undefined;
1265
+ CertificateArn?: string | undefined;
1266
+ DatabaseName?: string | undefined;
1267
+ Port: number;
1268
+ ServerName: string;
1269
+ SslMode?: MongoDbSslModeValue | undefined;
1270
+ } | undefined;
1271
+ /**
1272
+ * MySqlSettings property identifier.
1273
+ */
1274
+ MySqlSettings?: {
1275
+ CertificateArn?: string | undefined;
1276
+ Port: number;
1277
+ ServerName: string;
1278
+ SslMode: DmsSslModeValue;
1279
+ } | undefined;
1280
+ /**
1281
+ * OracleSettings property identifier.
1282
+ */
1283
+ OracleSettings?: {
1284
+ AsmServer?: string | undefined;
1285
+ CertificateArn?: string | undefined;
1286
+ DatabaseName: string;
1287
+ Port: number;
1288
+ SecretsManagerOracleAsmAccessRoleArn?: string | undefined;
1289
+ SecretsManagerOracleAsmSecretId?: string | undefined;
1290
+ SecretsManagerSecurityDbEncryptionAccessRoleArn?: string | undefined;
1291
+ SecretsManagerSecurityDbEncryptionSecretId?: string | undefined;
1292
+ ServerName: string;
1293
+ SslMode: DmsSslModeValue;
1294
+ } | undefined;
1295
+ /**
1296
+ * PostgreSqlSettings property identifier.
1297
+ */
1298
+ PostgreSqlSettings?: {
1299
+ CertificateArn?: string | undefined;
1300
+ DatabaseName: string;
1301
+ Port: number;
1302
+ ServerName: string;
1303
+ SslMode: DmsSslModeValue;
1304
+ } | undefined;
1305
+ /**
1306
+ * RedshiftSettings property identifier.
1307
+ */
1308
+ RedshiftSettings?: {
1309
+ DatabaseName: string;
1310
+ Port: number;
1311
+ ServerName: string;
1312
+ } | undefined;
1313
+ /**
1314
+ * SybaseAseSettings property identifier.
1315
+ */
1316
+ SybaseAseSettings: {
1317
+ CertificateArn?: string | undefined;
1318
+ DatabaseName?: string | undefined;
1319
+ EncryptPassword?: boolean | undefined;
1320
+ Port: number;
1321
+ ServerName: string;
1322
+ SslMode: SybaseSslModeValue;
1323
+ };
1098
1324
  } | undefined;
1099
1325
  /**
1100
1326
  * An array of key-value pairs to apply to this resource.
@@ -1141,4 +1367,8 @@ export type MongoDbAuthType = "no" | "password";
1141
1367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbsslmodevalue.html}
1142
1368
  */
1143
1369
  export type MongoDbSslModeValue = "none" | "require" | "verify-full";
1370
+ /**
1371
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-sybasesslmodevalue.html}
1372
+ */
1373
+ export type SybaseSslModeValue = "none" | "require" | "verify-ca";
1144
1374
  //# sourceMappingURL=aws-dms-dataprovider.d.ts.map
@@ -64,6 +64,7 @@ export type EC2ClientVpnEndpointProps = {
64
64
  */
65
65
  DnsServers?: string[] | undefined;
66
66
  /**
67
+ * The IP address type of the Client VPN endpoint. Possible values are `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing only, or `dual-stack` for both IPv4 and IPv6 addressing.
67
68
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-endpointipaddresstype}
68
69
  */
69
70
  EndpointIpAddressType?: string | undefined;
@@ -108,6 +109,7 @@ export type EC2ClientVpnEndpointProps = {
108
109
  */
109
110
  TagSpecifications?: TagSpecification[] | undefined;
110
111
  /**
112
+ * The IP address type of the Client VPN endpoint. Possible values are either `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing only, or `dual-stack` for both IPv4 and IPv6 addressing.
111
113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-trafficipaddresstype}
112
114
  */
113
115
  TrafficIpAddressType?: string | undefined;
@@ -340,10 +340,16 @@ export type FleetLaunchTemplateConfigRequest = {
340
340
  */
341
341
  export type FleetLaunchTemplateOverridesRequest = {
342
342
  /**
343
- * The Availability Zone in which to launch the instances.
343
+ * The Availability Zone in which to launch the instances. For example, `us-east-2a` .
344
+ *
345
+ * Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
344
346
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzone}
345
347
  */
346
348
  AvailabilityZone?: string | undefined;
349
+ /**
350
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzoneid}
351
+ */
352
+ AvailabilityZoneId?: string | undefined;
347
353
  /**
348
354
  * The block device mappings, which define the EBS volumes and instance store volumes to attach to the instance at launch.
349
355
  *
@@ -1,15 +1,15 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com//vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
3
+ * IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
4
4
  *
5
- * There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com//vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
5
+ * There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com/vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html}
7
7
  */
8
8
  export type EC2IPAM = ResourceDefinitionWithAttributes<"AWS::EC2::IPAM", EC2IPAMProps, EC2IPAMAttribs>;
9
9
  /**
10
- * IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com//vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
10
+ * IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
11
11
  *
12
- * There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com//vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
12
+ * There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com/vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
13
13
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html}
14
14
  */
15
15
  export type EC2IPAMProps = {
@@ -51,7 +51,7 @@ export type EC2IPAMProps = {
51
51
  */
52
52
  Tags?: Tag[] | undefined;
53
53
  /**
54
- * IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the [VPC IPAM product pricing page](https://docs.aws.amazon.com//vpc/pricing/) .
54
+ * IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the [VPC IPAM product pricing page](https://docs.aws.amazon.com/vpc/pricing/) .
55
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html#cfn-ec2-ipam-tier}
56
56
  */
57
57
  Tier?: "free" | "advanced" | undefined;
@@ -696,10 +696,16 @@ export type LaunchTemplateConfig = {
696
696
  */
697
697
  export type LaunchTemplateOverrides = {
698
698
  /**
699
- * The Availability Zone in which to launch the instances.
699
+ * The Availability Zone in which to launch the instances. For example, `us-east-2a` .
700
+ *
701
+ * Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
700
702
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzone}
701
703
  */
702
704
  AvailabilityZone?: string | undefined;
705
+ /**
706
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzoneid}
707
+ */
708
+ AvailabilityZoneId?: string | undefined;
703
709
  /**
704
710
  * The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types.
705
711
  *
@@ -1209,6 +1215,10 @@ export type SpotPlacement = {
1209
1215
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzone}
1210
1216
  */
1211
1217
  AvailabilityZone?: string | undefined;
1218
+ /**
1219
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzoneid}
1220
+ */
1221
+ AvailabilityZoneId?: string | undefined;
1212
1222
  /**
1213
1223
  * The name of the placement group.
1214
1224
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-groupname}
@@ -1,11 +1,11 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * Resource Type definition for AWS::EC2::VPNConcentrator
3
+ * Describes a VPN concentrator.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
5
5
  */
6
6
  export type EC2VPNConcentrator = ResourceDefinitionWithAttributes<"AWS::EC2::VPNConcentrator", EC2VPNConcentratorProps, EC2VPNConcentratorAttribs>;
7
7
  /**
8
- * Resource Type definition for AWS::EC2::VPNConcentrator
8
+ * Describes a VPN concentrator.
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
10
10
  */
11
11
  export type EC2VPNConcentratorProps = {
@@ -15,12 +15,12 @@ export type EC2VPNConcentratorProps = {
15
15
  */
16
16
  Tags?: Tag[] | undefined;
17
17
  /**
18
- * The ID of the transit gateway
18
+ * The ID of the transit gateway associated with the VPN concentrator.
19
19
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-transitgatewayid}
20
20
  */
21
21
  TransitGatewayId: string;
22
22
  /**
23
- * The type of VPN concentrator
23
+ * The type of VPN concentrator.
24
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-type}
25
25
  */
26
26
  Type: string;
@@ -30,12 +30,12 @@ export type EC2VPNConcentratorProps = {
30
30
  */
31
31
  export type EC2VPNConcentratorAttribs = {
32
32
  /**
33
- * The ID of the transit gateway attachment
33
+ * The ID of the transit gateway attachment for the VPN concentrator.
34
34
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-transitgatewayattachmentid}
35
35
  */
36
36
  TransitGatewayAttachmentId: string;
37
37
  /**
38
- * The ID of the VPN connection.
38
+ * The ID of the VPN concentrator to associate with the VPN connection.
39
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-vpnconcentratorid}
40
40
  */
41
41
  VpnConcentratorId: string;
@@ -120,7 +120,7 @@ export type EC2VPNConnectionProps = {
120
120
  */
121
121
  Type: string;
122
122
  /**
123
- * The ID of the VPN connection.
123
+ * The ID of the VPN concentrator to associate with the VPN connection.
124
124
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-vpnconcentratorid}
125
125
  */
126
126
  VpnConcentratorId?: string | undefined;
@@ -1,11 +1,11 @@
1
1
  import type { ResourceDefinition } from "../main.ts";
2
2
  /**
3
- * Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
3
+ * The ARN of the IAM principal to remove from the pull time update exclusion list.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
5
5
  */
6
6
  export type ECRPullTimeUpdateExclusion = ResourceDefinition<"AWS::ECR::PullTimeUpdateExclusion", ECRPullTimeUpdateExclusionProps>;
7
7
  /**
8
- * Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
8
+ * The ARN of the IAM principal to remove from the pull time update exclusion list.
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
10
10
  */
11
11
  export type ECRPullTimeUpdateExclusionProps = {
@@ -10,7 +10,7 @@ export type ECRRepositoryCreationTemplate = ResourceDefinitionWithAttributes<"AW
10
10
  */
11
11
  export type ECRRepositoryCreationTemplateProps = {
12
12
  /**
13
- * A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and REPLICATION
13
+ * A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The supported scenarios are PULL_THROUGH_CACHE, REPLICATION, and CREATE_ON_PUSH
14
14
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#cfn-ecr-repositorycreationtemplate-appliedfor}
15
15
  */
16
16
  AppliedFor: AppliedForItem[];
@@ -133,6 +133,16 @@ export type BaselineEbsBandwidthMbpsRequest = {
133
133
  */
134
134
  export type InstanceLaunchTemplate = {
135
135
  /**
136
+ * The capacity option type. This determines whether Amazon ECS launches On-Demand or Spot Instances for your managed instance capacity provider.
137
+ *
138
+ * Valid values are:
139
+ *
140
+ * - `ON_DEMAND` - Launches standard On-Demand Instances. On-Demand Instances provide predictable pricing and availability.
141
+ * - `SPOT` - Launches Spot Instances that use spare Amazon EC2 capacity at reduced cost. Spot Instances can be interrupted by Amazon EC2 with a two-minute notification when the capacity is needed back.
142
+ *
143
+ * The default is On-Demand
144
+ *
145
+ * For more information about Amazon EC2 capacity options, see [Instance purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the *Amazon EC2 User Guide* .
136
146
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-instancelaunchtemplate.html#cfn-ecs-capacityprovider-instancelaunchtemplate-capacityoptiontype}
137
147
  */
138
148
  CapacityOptionType?: "ON_DEMAND" | "SPOT" | undefined;
@@ -93,50 +93,62 @@ export type ECSExpressGatewayServiceAttribs = {
93
93
  */
94
94
  CreatedAt: string;
95
95
  /**
96
+ * The list of Auto Scaling policy ARNs associated with the express service.
96
97
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-autoscalingarns.html#cfn-ecs-expressgatewayservice-autoscalingarns-applicationautoscalingpolicies}
97
98
  */
98
99
  "ECSManagedResourceArns.AutoScaling.ApplicationAutoScalingPolicies": string[];
99
100
  /**
101
+ * The Auto Scaling Scalable Target ARN associated with the express service.
100
102
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-autoscalingarns.html#cfn-ecs-expressgatewayservice-autoscalingarns-scalabletarget}
101
103
  */
102
104
  "ECSManagedResourceArns.AutoScaling.ScalableTarget": string;
103
105
  /**
106
+ * The Certificate ARN associated with the express service.
104
107
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-certificatearn}
105
108
  */
106
109
  "ECSManagedResourceArns.IngressPath.CertificateArn": string;
107
110
  /**
111
+ * The ARN of the Load Balancer listener associated with the express service.
108
112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-listenerarn}
109
113
  */
110
114
  "ECSManagedResourceArns.IngressPath.ListenerArn": string;
111
115
  /**
116
+ * The ARN of the Load Balancer listener rule associated with the express service.
112
117
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-listenerrulearn}
113
118
  */
114
119
  "ECSManagedResourceArns.IngressPath.ListenerRuleArn": string;
115
120
  /**
121
+ * The ARN of the Load Balancer associated with the express service.
116
122
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-loadbalancerarn}
117
123
  */
118
124
  "ECSManagedResourceArns.IngressPath.LoadBalancerArn": string;
119
125
  /**
126
+ * The list of Load Balancer Security Group ARNs associated with the express service.
120
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-loadbalancersecuritygroups}
121
128
  */
122
129
  "ECSManagedResourceArns.IngressPath.LoadBalancerSecurityGroups": string[];
123
130
  /**
131
+ * The list of Target Group ARNs associated with the express service.
124
132
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-targetgrouparns}
125
133
  */
126
134
  "ECSManagedResourceArns.IngressPath.TargetGroupArns": string[];
127
135
  /**
136
+ * The list of Log Group ARNs associated with the express service.
128
137
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-loggroups}
129
138
  */
130
139
  "ECSManagedResourceArns.LogGroups": string[];
131
140
  /**
141
+ * The list of Metric Alarm ARNs associated with the express service.
132
142
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-metricalarms}
133
143
  */
134
144
  "ECSManagedResourceArns.MetricAlarms": string[];
135
145
  /**
146
+ * The list of Security Group ARNs associated with the express service.
136
147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-servicesecuritygroups}
137
148
  */
138
149
  "ECSManagedResourceArns.ServiceSecurityGroups": string[];
139
150
  /**
151
+ * The Endpoint of the express service.
140
152
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html#cfn-ecs-expressgatewayservice-endpoint}
141
153
  */
142
154
  Endpoint: string;