@propulsionworks/cloudformation 0.1.41 → 0.1.43

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 (40) 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 +17 -0
  3. package/out/exports/resources.generated/aws-bedrock-blueprint.d.ts +1 -1
  4. package/out/exports/resources.generated/aws-bedrock-dataautomationproject.d.ts +2 -2
  5. package/out/exports/resources.generated/aws-bedrockagentcore-gateway.d.ts +82 -0
  6. package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +21 -0
  7. package/out/exports/resources.generated/aws-bedrockagentcore-memory.d.ts +106 -0
  8. package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +5 -0
  9. package/out/exports/resources.generated/aws-billing-billingview.d.ts +4 -0
  10. package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +13 -0
  11. package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +5 -0
  12. package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +4 -0
  13. package/out/exports/resources.generated/aws-dms-dataprovider.d.ts +231 -1
  14. package/out/exports/resources.generated/aws-docdb-globalcluster.d.ts +111 -0
  15. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +7 -0
  16. package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -5
  17. package/out/exports/resources.generated/aws-ec2-ipampool.d.ts +1 -1
  18. package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +16 -0
  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-gamelift-containerfleet.d.ts +1 -1
  24. package/out/exports/resources.generated/aws-gamelift-fleet.d.ts +1 -1
  25. package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +29 -0
  26. package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +10 -1
  27. package/out/exports/resources.generated/aws-pcs-cluster.d.ts +4 -4
  28. package/out/exports/resources.generated/aws-quicksight-actionconnector.d.ts +341 -0
  29. package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +48 -0
  30. package/out/exports/resources.generated/aws-quicksight-dataset.d.ts +3 -3
  31. package/out/exports/resources.generated/aws-quicksight-datasource.d.ts +34 -1
  32. package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +40 -0
  33. package/out/exports/resources.generated/aws-route53-hostedzone.d.ts +0 -1
  34. package/out/exports/resources.generated/aws-s3-storagelens.d.ts +12 -12
  35. package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +1 -1
  36. package/out/exports/resources.generated/aws-ses-configurationset.d.ts +26 -0
  37. package/out/exports/resources.generated/aws-wisdom-aiagent.d.ts +228 -1
  38. package/out/exports/resources.generated/aws-wisdom-aiprompt.d.ts +1 -1
  39. package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +21 -3
  40. 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
@@ -0,0 +1,111 @@
1
+ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
+ /**
3
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
5
+ */
6
+ export type DocDBGlobalCluster = ResourceDefinitionWithAttributes<"AWS::DocDB::GlobalCluster", DocDBGlobalClusterProps, DocDBGlobalClusterAttribs>;
7
+ /**
8
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
9
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
10
+ */
11
+ export type DocDBGlobalClusterProps = {
12
+ /**
13
+ * Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
14
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-deletionprotection}
15
+ */
16
+ DeletionProtection?: boolean | undefined;
17
+ /**
18
+ * The database engine to use for this global cluster.
19
+ * @default "docdb"
20
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engine}
21
+ */
22
+ Engine: "docdb";
23
+ /**
24
+ * The engine version to use for this global cluster.
25
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engineversion}
26
+ */
27
+ EngineVersion?: string | undefined;
28
+ /**
29
+ * The cluster identifier of the global cluster.
30
+ * @minLength 1
31
+ * @maxLength 63
32
+ * @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusteridentifier}
34
+ */
35
+ GlobalClusterIdentifier: string;
36
+ /**
37
+ * The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
38
+ * @pattern ^(?=.{40,128}$)arn.*
39
+ * @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-sourcedbclusteridentifier}
41
+ */
42
+ SourceDBClusterIdentifier?: string | undefined;
43
+ /**
44
+ * Indicates whether the global cluster has storage encryption enabled.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-storageencrypted}
46
+ */
47
+ StorageEncrypted?: boolean | undefined;
48
+ /**
49
+ * The tags to be assigned to the Amazon DocumentDB resource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-tags}
51
+ */
52
+ Tags?: Tag[] | undefined;
53
+ } | {
54
+ /**
55
+ * Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
56
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-deletionprotection}
57
+ */
58
+ DeletionProtection?: boolean | undefined;
59
+ /**
60
+ * The database engine to use for this global cluster.
61
+ * @default "docdb"
62
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engine}
63
+ */
64
+ Engine?: "docdb" | undefined;
65
+ /**
66
+ * The engine version to use for this global cluster.
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engineversion}
68
+ */
69
+ EngineVersion?: string | undefined;
70
+ /**
71
+ * The cluster identifier of the global cluster.
72
+ * @minLength 1
73
+ * @maxLength 63
74
+ * @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusteridentifier}
76
+ */
77
+ GlobalClusterIdentifier: string;
78
+ /**
79
+ * The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
80
+ * @pattern ^(?=.{40,128}$)arn.*
81
+ * @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-sourcedbclusteridentifier}
83
+ */
84
+ SourceDBClusterIdentifier: string;
85
+ /**
86
+ * Indicates whether the global cluster has storage encryption enabled.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-storageencrypted}
88
+ */
89
+ StorageEncrypted?: boolean | undefined;
90
+ /**
91
+ * The tags to be assigned to the Amazon DocumentDB resource.
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-tags}
93
+ */
94
+ Tags?: Tag[] | undefined;
95
+ };
96
+ /**
97
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#aws-resource-docdb-globalcluster-return-values}
98
+ */
99
+ export type DocDBGlobalClusterAttribs = {
100
+ /**
101
+ * The Amazon Resource Name (ARN) for the global cluster.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusterarn}
103
+ */
104
+ GlobalClusterArn: string;
105
+ /**
106
+ * The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB cluster is accessed.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusterresourceid}
108
+ */
109
+ GlobalClusterResourceId: string;
110
+ };
111
+ //# sourceMappingURL=aws-docdb-globalcluster.d.ts.map
@@ -346,6 +346,13 @@ export type FleetLaunchTemplateOverridesRequest = {
346
346
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzone}
347
347
  */
348
348
  AvailabilityZone?: string | undefined;
349
+ /**
350
+ * The ID of the Availability Zone in which to launch the instances. For example, `use2-az1` .
351
+ *
352
+ * Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzoneid}
354
+ */
355
+ AvailabilityZoneId?: string | undefined;
349
356
  /**
350
357
  * The block device mappings, which define the EBS volumes and instance store volumes to attach to the instance at launch.
351
358
  *
@@ -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;
@@ -45,7 +45,7 @@ export type EC2IPAMPoolProps = {
45
45
  * Limits which service in AWS that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.
46
46
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampool.html#cfn-ec2-ipampool-awsservice}
47
47
  */
48
- AwsService?: "ec2" | undefined;
48
+ AwsService?: "ec2" | "global-services" | undefined;
49
49
  /**
50
50
  * The description of the IPAM pool.
51
51
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampool.html#cfn-ec2-ipampool-description}
@@ -702,6 +702,13 @@ export type LaunchTemplateOverrides = {
702
702
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzone}
703
703
  */
704
704
  AvailabilityZone?: string | undefined;
705
+ /**
706
+ * The ID of the Availability Zone in which to launch the instances. For example, `use2-az1` .
707
+ *
708
+ * Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
709
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzoneid}
710
+ */
711
+ AvailabilityZoneId?: string | undefined;
705
712
  /**
706
713
  * 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.
707
714
  *
@@ -1211,6 +1218,15 @@ export type SpotPlacement = {
1211
1218
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzone}
1212
1219
  */
1213
1220
  AvailabilityZone?: string | undefined;
1221
+ /**
1222
+ * The ID of the Availability Zone. For example, `use2-az1` .
1223
+ *
1224
+ * [Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, " `use2-az1` , `use2-bz1` ".
1225
+ *
1226
+ * Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
1227
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzoneid}
1228
+ */
1229
+ AvailabilityZoneId?: string | undefined;
1214
1230
  /**
1215
1231
  * The name of the placement group.
1216
1232
  * @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[];
@@ -305,7 +305,7 @@ export type LocationCapacity = {
305
305
  * @min 0
306
306
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationcapacity.html#cfn-gamelift-containerfleet-locationcapacity-minsize}
307
307
  */
308
- MinSize: number;
308
+ MinSize?: number | undefined;
309
309
  };
310
310
  /**
311
311
  * A remote location where a multi-location fleet can deploy game servers for game hosting.
@@ -298,7 +298,7 @@ export type LocationCapacity = {
298
298
  * @min 0
299
299
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationcapacity.html#cfn-gamelift-fleet-locationcapacity-minsize}
300
300
  */
301
- MinSize: number;
301
+ MinSize?: number | undefined;
302
302
  };
303
303
  /**
304
304
  * A remote location where a multi-location fleet can deploy game servers for game hosting.