stacktape 3.4.1 → 3.5.1

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 (5) hide show
  1. package/index.d.ts +7 -1
  2. package/index.js +447 -2
  3. package/package.json +1 -1
  4. package/plain.d.ts +4039 -6630
  5. package/types.d.ts +539 -210
package/types.d.ts CHANGED
@@ -129,6 +129,12 @@ export type {
129
129
  WebAppFirewallProps,
130
130
  OpenSearchDomainProps,
131
131
  EfsFilesystemProps,
132
+ AstroWebProps,
133
+ NuxtWebProps,
134
+ SvelteKitWebProps,
135
+ SolidStartWebProps,
136
+ TanStackWebProps,
137
+ RemixWebProps,
132
138
  BastionProps,
133
139
  RdsEngineProperties,
134
140
  AuroraEngineProperties,
@@ -878,6 +884,90 @@ export type EfsFilesystemPropsWithOverrides = import('./plain').EfsFilesystemPro
878
884
  transforms?: EfsFilesystemTransforms;
879
885
  };
880
886
 
887
+ export type AstroWebPropsWithOverrides = import('./plain').AstroWebProps & {
888
+ /**
889
+ * Override properties of underlying CloudFormation resources.
890
+ * Allows fine-grained control over the generated infrastructure.
891
+ */
892
+ overrides?: AstroWebOverrides;
893
+ /**
894
+ * Transform functions for underlying CloudFormation resources.
895
+ * Each function receives the current properties and returns modified properties.
896
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
897
+ */
898
+ transforms?: AstroWebTransforms;
899
+ };
900
+
901
+ export type NuxtWebPropsWithOverrides = import('./plain').NuxtWebProps & {
902
+ /**
903
+ * Override properties of underlying CloudFormation resources.
904
+ * Allows fine-grained control over the generated infrastructure.
905
+ */
906
+ overrides?: NuxtWebOverrides;
907
+ /**
908
+ * Transform functions for underlying CloudFormation resources.
909
+ * Each function receives the current properties and returns modified properties.
910
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
911
+ */
912
+ transforms?: NuxtWebTransforms;
913
+ };
914
+
915
+ export type SvelteKitWebPropsWithOverrides = import('./plain').SvelteKitWebProps & {
916
+ /**
917
+ * Override properties of underlying CloudFormation resources.
918
+ * Allows fine-grained control over the generated infrastructure.
919
+ */
920
+ overrides?: SvelteKitWebOverrides;
921
+ /**
922
+ * Transform functions for underlying CloudFormation resources.
923
+ * Each function receives the current properties and returns modified properties.
924
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
925
+ */
926
+ transforms?: SvelteKitWebTransforms;
927
+ };
928
+
929
+ export type SolidStartWebPropsWithOverrides = import('./plain').SolidStartWebProps & {
930
+ /**
931
+ * Override properties of underlying CloudFormation resources.
932
+ * Allows fine-grained control over the generated infrastructure.
933
+ */
934
+ overrides?: SolidStartWebOverrides;
935
+ /**
936
+ * Transform functions for underlying CloudFormation resources.
937
+ * Each function receives the current properties and returns modified properties.
938
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
939
+ */
940
+ transforms?: SolidStartWebTransforms;
941
+ };
942
+
943
+ export type TanStackWebPropsWithOverrides = import('./plain').TanStackWebProps & {
944
+ /**
945
+ * Override properties of underlying CloudFormation resources.
946
+ * Allows fine-grained control over the generated infrastructure.
947
+ */
948
+ overrides?: TanStackWebOverrides;
949
+ /**
950
+ * Transform functions for underlying CloudFormation resources.
951
+ * Each function receives the current properties and returns modified properties.
952
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
953
+ */
954
+ transforms?: TanStackWebTransforms;
955
+ };
956
+
957
+ export type RemixWebPropsWithOverrides = import('./plain').RemixWebProps & {
958
+ /**
959
+ * Override properties of underlying CloudFormation resources.
960
+ * Allows fine-grained control over the generated infrastructure.
961
+ */
962
+ overrides?: RemixWebOverrides;
963
+ /**
964
+ * Transform functions for underlying CloudFormation resources.
965
+ * Each function receives the current properties and returns modified properties.
966
+ * Unlike overrides, transforms allow dynamic modification based on existing values.
967
+ */
968
+ transforms?: RemixWebTransforms;
969
+ };
970
+
881
971
  export type BastionPropsWithOverrides = import('./plain').BastionProps & {
882
972
  /**
883
973
  * Override properties of underlying CloudFormation resources.
@@ -1266,6 +1356,126 @@ export type NextjsWebOverrides = {
1266
1356
  [key: string]: Record<string, unknown> | undefined;
1267
1357
  };
1268
1358
 
1359
+ export type AstroWebOverrides = {
1360
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1361
+ bucket?: Partial<AwsS3Bucket>;
1362
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1363
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1364
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1365
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1366
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1367
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1368
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1369
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1370
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1371
+ lambdaRole?: Partial<AwsIamRole>;
1372
+ lambda?: Partial<AwsLambdaFunction>;
1373
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1374
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1375
+ /** Index signature for dynamic CloudFormation resource names */
1376
+ [key: string]: Record<string, unknown> | undefined;
1377
+ };
1378
+
1379
+ export type NuxtWebOverrides = {
1380
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1381
+ bucket?: Partial<AwsS3Bucket>;
1382
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1383
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1384
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1385
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1386
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1387
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1388
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1389
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1390
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1391
+ lambdaRole?: Partial<AwsIamRole>;
1392
+ lambda?: Partial<AwsLambdaFunction>;
1393
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1394
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1395
+ /** Index signature for dynamic CloudFormation resource names */
1396
+ [key: string]: Record<string, unknown> | undefined;
1397
+ };
1398
+
1399
+ export type SvelteKitWebOverrides = {
1400
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1401
+ bucket?: Partial<AwsS3Bucket>;
1402
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1403
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1404
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1405
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1406
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1407
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1408
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1409
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1410
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1411
+ lambdaRole?: Partial<AwsIamRole>;
1412
+ lambda?: Partial<AwsLambdaFunction>;
1413
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1414
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1415
+ /** Index signature for dynamic CloudFormation resource names */
1416
+ [key: string]: Record<string, unknown> | undefined;
1417
+ };
1418
+
1419
+ export type SolidStartWebOverrides = {
1420
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1421
+ bucket?: Partial<AwsS3Bucket>;
1422
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1423
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1424
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1425
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1426
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1427
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1428
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1429
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1430
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1431
+ lambdaRole?: Partial<AwsIamRole>;
1432
+ lambda?: Partial<AwsLambdaFunction>;
1433
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1434
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1435
+ /** Index signature for dynamic CloudFormation resource names */
1436
+ [key: string]: Record<string, unknown> | undefined;
1437
+ };
1438
+
1439
+ export type TanStackWebOverrides = {
1440
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1441
+ bucket?: Partial<AwsS3Bucket>;
1442
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1443
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1444
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1445
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1446
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1447
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1448
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1449
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1450
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1451
+ lambdaRole?: Partial<AwsIamRole>;
1452
+ lambda?: Partial<AwsLambdaFunction>;
1453
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1454
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1455
+ /** Index signature for dynamic CloudFormation resource names */
1456
+ [key: string]: Record<string, unknown> | undefined;
1457
+ };
1458
+
1459
+ export type RemixWebOverrides = {
1460
+ ssrWebHostHeaderRewriteFunction?: Partial<AwsCloudfrontFunction>;
1461
+ bucket?: Partial<AwsS3Bucket>;
1462
+ bucketPolicy?: Partial<AwsS3Bucketpolicy>;
1463
+ cloudfrontOriginAccessIdentity?: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1464
+ cloudfrontCustomCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1465
+ cloudfrontDefaultCachePolicy?: Partial<AwsCloudfrontCachepolicy>;
1466
+ cloudfrontCustomOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1467
+ cloudfrontDefaultOriginRequestPolicy?: Partial<AwsCloudfrontOriginrequestpolicy>;
1468
+ cloudfrontDistribution?: Partial<AwsCloudfrontDistribution>;
1469
+ customResourceDefaultDomain?: Partial<AwsCloudformationCustomresource>;
1470
+ dnsRecord?: Partial<AwsRoute53Recordset>;
1471
+ lambdaRole?: Partial<AwsIamRole>;
1472
+ lambda?: Partial<AwsLambdaFunction>;
1473
+ lambdaLogGroup?: Partial<AwsLogsLoggroup>;
1474
+ lambdaUrl?: Partial<AwsLambdaUrl>;
1475
+ /** Index signature for dynamic CloudFormation resource names */
1476
+ [key: string]: Record<string, unknown> | undefined;
1477
+ };
1478
+
1269
1479
  export type BastionOverrides = {
1270
1480
  bastionCloudwatchSsmDocument?: Partial<AwsSsmDocument>;
1271
1481
  bastionEc2AutoscalingGroup?: Partial<AwsAutoscalingAutoscalinggroup>;
@@ -1653,6 +1863,126 @@ export type NextjsWebTransforms = {
1653
1863
  [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1654
1864
  };
1655
1865
 
1866
+ export type AstroWebTransforms = {
1867
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1868
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1869
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1870
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1871
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1872
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1873
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1874
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1875
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1876
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1877
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1878
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1879
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1880
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1881
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1882
+ /** Index signature for dynamic CloudFormation resource names */
1883
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1884
+ };
1885
+
1886
+ export type NuxtWebTransforms = {
1887
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1888
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1889
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1890
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1891
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1892
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1893
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1894
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1895
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1896
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1897
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1898
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1899
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1900
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1901
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1902
+ /** Index signature for dynamic CloudFormation resource names */
1903
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1904
+ };
1905
+
1906
+ export type SvelteKitWebTransforms = {
1907
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1908
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1909
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1910
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1911
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1912
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1913
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1914
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1915
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1916
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1917
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1918
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1919
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1920
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1921
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1922
+ /** Index signature for dynamic CloudFormation resource names */
1923
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1924
+ };
1925
+
1926
+ export type SolidStartWebTransforms = {
1927
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1928
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1929
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1930
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1931
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1932
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1933
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1934
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1935
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1936
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1937
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1938
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1939
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1940
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1941
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1942
+ /** Index signature for dynamic CloudFormation resource names */
1943
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1944
+ };
1945
+
1946
+ export type TanStackWebTransforms = {
1947
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1948
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1949
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1950
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1951
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1952
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1953
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1954
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1955
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1956
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1957
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1958
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1959
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1960
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1961
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1962
+ /** Index signature for dynamic CloudFormation resource names */
1963
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1964
+ };
1965
+
1966
+ export type RemixWebTransforms = {
1967
+ ssrWebHostHeaderRewriteFunction?: (props: Partial<AwsCloudfrontFunction>) => Partial<AwsCloudfrontFunction>;
1968
+ bucket?: (props: Partial<AwsS3Bucket>) => Partial<AwsS3Bucket>;
1969
+ bucketPolicy?: (props: Partial<AwsS3Bucketpolicy>) => Partial<AwsS3Bucketpolicy>;
1970
+ cloudfrontOriginAccessIdentity?: (props: Partial<AwsCloudfrontCloudfrontoriginaccessidentity>) => Partial<AwsCloudfrontCloudfrontoriginaccessidentity>;
1971
+ cloudfrontCustomCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1972
+ cloudfrontDefaultCachePolicy?: (props: Partial<AwsCloudfrontCachepolicy>) => Partial<AwsCloudfrontCachepolicy>;
1973
+ cloudfrontCustomOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1974
+ cloudfrontDefaultOriginRequestPolicy?: (props: Partial<AwsCloudfrontOriginrequestpolicy>) => Partial<AwsCloudfrontOriginrequestpolicy>;
1975
+ cloudfrontDistribution?: (props: Partial<AwsCloudfrontDistribution>) => Partial<AwsCloudfrontDistribution>;
1976
+ customResourceDefaultDomain?: (props: Partial<AwsCloudformationCustomresource>) => Partial<AwsCloudformationCustomresource>;
1977
+ dnsRecord?: (props: Partial<AwsRoute53Recordset>) => Partial<AwsRoute53Recordset>;
1978
+ lambdaRole?: (props: Partial<AwsIamRole>) => Partial<AwsIamRole>;
1979
+ lambda?: (props: Partial<AwsLambdaFunction>) => Partial<AwsLambdaFunction>;
1980
+ lambdaLogGroup?: (props: Partial<AwsLogsLoggroup>) => Partial<AwsLogsLoggroup>;
1981
+ lambdaUrl?: (props: Partial<AwsLambdaUrl>) => Partial<AwsLambdaUrl>;
1982
+ /** Index signature for dynamic CloudFormation resource names */
1983
+ [key: string]: ((props: Record<string, unknown>) => Record<string, unknown>) | undefined;
1984
+ };
1985
+
1656
1986
  export type BastionTransforms = {
1657
1987
  bastionCloudwatchSsmDocument?: (props: Partial<AwsSsmDocument>) => Partial<AwsSsmDocument>;
1658
1988
  bastionEc2AutoscalingGroup?: (props: Partial<AwsAutoscalingAutoscalinggroup>) => Partial<AwsAutoscalingAutoscalinggroup>;
@@ -1700,12 +2030,12 @@ export declare class RelationalDatabase extends BaseResource {
1700
2030
  }
1701
2031
  export declare class WebService extends BaseResource {
1702
2032
  /**
1703
- * #### Web Service
2033
+ * #### A container running 24/7 with a public HTTPS URL.
1704
2034
  *
1705
2035
  * ---
1706
2036
  *
1707
- * A continuously running container with a public endpoint (URL) that is accessible from the internet.
1708
- * It includes TLS/SSL out of the box and provides easy configuration for scaling, health checks, and other properties.
2037
+ * Use for APIs, web apps, and any service that needs to be always-on and reachable from the internet.
2038
+ * Includes TLS/SSL, auto-scaling, health checks, and zero-downtime deployments.
1709
2039
  */
1710
2040
  constructor(properties: WebServiceProps);
1711
2041
  constructor(name: string, properties: WebServiceProps);
@@ -1720,12 +2050,12 @@ export declare class WebService extends BaseResource {
1720
2050
  }
1721
2051
  export declare class PrivateService extends BaseResource {
1722
2052
  /**
1723
- * #### Private Service
2053
+ * #### Always-on container with a private endpoint, reachable only from other resources in your stack.
1724
2054
  *
1725
2055
  * ---
1726
2056
  *
1727
- * A continuously running container with a private endpoint that is only accessible from within your private network (VPC).
1728
- * It provides an easy setup for scaling, health checks, and other properties.
2057
+ * Use for internal APIs, microservices, or gRPC servers that shouldn't be publicly accessible.
2058
+ * Other containers in the same stack can reach it by name (e.g., `http://myService:3000`).
1729
2059
  */
1730
2060
  constructor(properties: PrivateServiceProps);
1731
2061
  constructor(name: string, properties: PrivateServiceProps);
@@ -1734,12 +2064,11 @@ export declare class PrivateService extends BaseResource {
1734
2064
  }
1735
2065
  export declare class WorkerService extends BaseResource {
1736
2066
  /**
1737
- * #### Worker Service
2067
+ * #### Always-on container with no public URL. For background workers, queue processors, and internal tasks.
1738
2068
  *
1739
2069
  * ---
1740
2070
  *
1741
- * A continuously running container that is inaccessible from the internet.
1742
- * Ideal for background jobs and processing tasks.
2071
+ * Runs 24/7 inside your VPC. Not reachable from the internet. Can connect to databases, queues, and other resources.
1743
2072
  */
1744
2073
  constructor(properties: WorkerServiceProps);
1745
2074
  constructor(name: string, properties: WorkerServiceProps);
@@ -1770,16 +2099,12 @@ export declare class LambdaFunction extends BaseResource {
1770
2099
  }
1771
2100
  export declare class BatchJob extends BaseResource {
1772
2101
  /**
1773
- * #### A resource for running containerized batch computing jobs.
2102
+ * #### Run containerized tasks to completion data processing, ML training, video encoding, etc.
1774
2103
  *
1775
2104
  * ---
1776
2105
  *
1777
- * Batch jobs are ideal for workloads that need to run to completion, such as data processing, machine learning pipelines, or other long-running background tasks.
1778
- * Stacktape manages the underlying infrastructure, so you can focus on your application.
1779
- *
1780
- * - **Pay-per-use**: You only pay for the compute resources consumed by your job.
1781
- * - **Scalable**: Handles both CPU-intensive and GPU-accelerated workloads.
1782
- * - **Resilient**: Provides built-in support for retries, logging, and event-driven scheduling.
2106
+ * Pay only for the compute time used. Supports CPU and GPU workloads, retries on failure,
2107
+ * and can be triggered by schedules, HTTP requests, S3 uploads, or queue messages.
1783
2108
  */
1784
2109
  constructor(properties: BatchJobProps);
1785
2110
  constructor(name: string, properties: BatchJobProps);
@@ -1792,11 +2117,11 @@ export declare class BatchJob extends BaseResource {
1792
2117
  }
1793
2118
  export declare class Bucket extends BaseResource {
1794
2119
  /**
1795
- * #### Storage Bucket
2120
+ * #### S3 storage bucket for files, images, backups, or any binary data.
1796
2121
  *
1797
2122
  * ---
1798
2123
  *
1799
- * A durable and highly available object storage service with pay-per-use pricing.
2124
+ * Pay only for what you store and transfer. Highly durable (99.999999999%).
1800
2125
  */
1801
2126
  constructor(properties: BucketPropsWithOverrides);
1802
2127
  constructor(name: string, properties: BucketPropsWithOverrides);
@@ -1807,12 +2132,12 @@ export declare class Bucket extends BaseResource {
1807
2132
  }
1808
2133
  export declare class HostingBucket extends BaseResource {
1809
2134
  /**
1810
- * #### Hosting Bucket
2135
+ * #### Host a static website (React, Vue, Astro, etc.) on S3 + CloudFront CDN.
1811
2136
  *
1812
2137
  * ---
1813
2138
  *
1814
- * A resource designed to host your static website or other static content.
1815
- * It combines the power of an S3 Bucket (for storing data) and a CloudFront CDN (for distributing it globally).
2139
+ * Combines S3 storage with a global CDN for fast, cheap, and scalable static site hosting.
2140
+ * Includes build step, custom domains, caching presets, and environment injection.
1816
2141
  */
1817
2142
  constructor(properties: HostingBucketPropsWithOverrides);
1818
2143
  constructor(name: string, properties: HostingBucketPropsWithOverrides);
@@ -1823,11 +2148,12 @@ export declare class HostingBucket extends BaseResource {
1823
2148
  }
1824
2149
  export declare class DynamoDbTable extends BaseResource {
1825
2150
  /**
1826
- * #### DynamoDB Table
2151
+ * #### Serverless NoSQL database with single-digit millisecond reads/writes at any scale.
1827
2152
  *
1828
2153
  * ---
1829
2154
  *
1830
- * A fully managed, serverless, and highly available key-value and document database that delivers single-digit millisecond performance at any scale.
2155
+ * No servers to manage, no capacity planning needed (in on-demand mode). Pay per read/write.
2156
+ * Great for user profiles, session data, IoT data, and any key-value or document workload.
1831
2157
  */
1832
2158
  constructor(properties: DynamoDbTablePropsWithOverrides);
1833
2159
  constructor(name: string, properties: DynamoDbTablePropsWithOverrides);
@@ -1840,13 +2166,12 @@ export declare class DynamoDbTable extends BaseResource {
1840
2166
  }
1841
2167
  export declare class EventBus extends BaseResource {
1842
2168
  /**
1843
- * #### Event Bus
2169
+ * #### Central event bus for decoupling services. Publish events and trigger functions, queues, or batch jobs.
1844
2170
  *
1845
2171
  * ---
1846
2172
  *
1847
- * An event bus that receives events from your applications. Other services can be configured to react to events on the bus. It simplifies building event-driven architectures by decoupling event producers and consumers.
1848
- *
1849
- * For more information, see the [AWS documentation on Amazon EventBridge](https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-buses.html).
2173
+ * Use to build event-driven architectures where producers and consumers are independent.
2174
+ * Functions, batch jobs, and other resources can subscribe to specific event patterns.
1850
2175
  */
1851
2176
  constructor(properties: EventBusPropsWithOverrides);
1852
2177
  constructor(name: string, properties: EventBusPropsWithOverrides);
@@ -1857,11 +2182,12 @@ export declare class EventBus extends BaseResource {
1857
2182
  }
1858
2183
  export declare class HttpApiGateway extends BaseResource {
1859
2184
  /**
1860
- * #### HTTP API Gateway
2185
+ * #### Serverless HTTP API with pay-per-request pricing (~$1/million requests).
1861
2186
  *
1862
2187
  * ---
1863
2188
  *
1864
- * A fully managed, serverless HTTP API Gateway with pay-per-request pricing.
2189
+ * Routes HTTP requests to Lambda functions, containers, or other backends.
2190
+ * No servers to manage. Includes built-in throttling, CORS, and TLS.
1865
2191
  */
1866
2192
  constructor(properties: HttpApiGatewayPropsWithOverrides);
1867
2193
  constructor(name: string, properties: HttpApiGatewayPropsWithOverrides);
@@ -1878,11 +2204,12 @@ export declare class HttpApiGateway extends BaseResource {
1878
2204
  }
1879
2205
  export declare class ApplicationLoadBalancer extends BaseResource {
1880
2206
  /**
1881
- * #### Application Load Balancer
2207
+ * #### HTTP/HTTPS load balancer with flat ~$18/month pricing. Required for WebSockets, firewalls, and gradual deployments.
1882
2208
  *
1883
2209
  * ---
1884
2210
  *
1885
- * A fully managed, Application (L7) Load Balancer that routes HTTP and HTTPS requests to other resources.
2211
+ * Routes requests to containers or Lambda functions based on path, host, headers, or query params.
2212
+ * More cost-effective than API Gateway above ~500k requests/day. AWS Free Tier eligible.
1886
2213
  */
1887
2214
  constructor(properties: ApplicationLoadBalancerPropsWithOverrides);
1888
2215
  constructor(name: string, properties: ApplicationLoadBalancerPropsWithOverrides);
@@ -1893,11 +2220,12 @@ export declare class ApplicationLoadBalancer extends BaseResource {
1893
2220
  }
1894
2221
  export declare class NetworkLoadBalancer extends BaseResource {
1895
2222
  /**
1896
- * #### Network Load Balancer
2223
+ * #### TCP/TLS load balancer for non-HTTP traffic (MQTT, game servers, custom protocols).
1897
2224
  *
1898
2225
  * ---
1899
2226
  *
1900
- * A fully managed, Network (L4) Load Balancer that routes TCP or UDP traffic to other resources.
2227
+ * Handles millions of connections with ultra-low latency. Use when you need raw TCP/TLS
2228
+ * instead of HTTP routing. Does not support CDN, firewall, or gradual deployments.
1901
2229
  */
1902
2230
  constructor(properties: NetworkLoadBalancerPropsWithOverrides);
1903
2231
  constructor(name: string, properties: NetworkLoadBalancerPropsWithOverrides);
@@ -1908,11 +2236,7 @@ export declare class NetworkLoadBalancer extends BaseResource {
1908
2236
  }
1909
2237
  export declare class RedisCluster extends BaseResource {
1910
2238
  /**
1911
- * #### Redis cluster
1912
- *
1913
- * ---
1914
- *
1915
- * A fully managed, Redis-compatible in-memory data store with sub-millisecond latency.
2239
+ * #### In-memory data store for caching, sessions, queues, and real-time data. Sub-millisecond latency.
1916
2240
  */
1917
2241
  constructor(properties: RedisClusterPropsWithOverrides);
1918
2242
  constructor(name: string, properties: RedisClusterPropsWithOverrides);
@@ -1927,11 +2251,12 @@ export declare class RedisCluster extends BaseResource {
1927
2251
  }
1928
2252
  export declare class MongoDbAtlasCluster extends BaseResource {
1929
2253
  /**
1930
- * #### MongoDB Atlas Cluster
2254
+ * #### Managed MongoDB database (Atlas) deployed into your AWS account and managed within your stack.
1931
2255
  *
1932
2256
  * ---
1933
2257
  *
1934
- * A fully managed MongoDB Atlas cluster that is automatically deployed to your AWS account and managed within your stack.
2258
+ * Document database with flexible schemas great for content management, user profiles, catalogs, and apps
2259
+ * where your data model evolves. Starts at M2 (shared, ~$9/month) or M10 (dedicated, ~$57/month).
1935
2260
  */
1936
2261
  constructor(properties: import('./plain').MongoDbAtlasClusterProps);
1937
2262
  constructor(name: string, properties: import('./plain').MongoDbAtlasClusterProps);
@@ -1940,12 +2265,13 @@ export declare class MongoDbAtlasCluster extends BaseResource {
1940
2265
  }
1941
2266
  export declare class StateMachine extends BaseResource {
1942
2267
  /**
1943
- * #### State Machine
2268
+ * #### Visual workflow engine for orchestrating Lambda functions, API calls, and other AWS services.
1944
2269
  *
1945
2270
  * ---
1946
2271
  *
1947
- * A state machine allows you to orchestrate and coordinate multiple compute resources to create complex workflows.
1948
- * It is defined using the [Amazon States Language](https://states-language.net/spec.html).
2272
+ * Define multi-step workflows with branching, retries, parallel execution, and error handling
2273
+ * all without writing orchestration code. Pay per state transition (~$0.025/1,000 transitions).
2274
+ * Defined using [Amazon States Language (ASL)](https://states-language.net/spec.html).
1949
2275
  */
1950
2276
  constructor(properties: StateMachineProps);
1951
2277
  constructor(name: string, properties: StateMachineProps);
@@ -1974,11 +2300,12 @@ export declare class UserAuthPool extends BaseResource {
1974
2300
  }
1975
2301
  export declare class UpstashRedis extends BaseResource {
1976
2302
  /**
1977
- * #### A serverless Redis database from Upstash.
2303
+ * #### Serverless Redis by Upstash — pay-per-request with no idle costs.
1978
2304
  *
1979
2305
  * ---
1980
2306
  *
1981
- * Upstash Redis is designed for low-latency data storage and caching at the edge, making it ideal for serverless and globally distributed applications.
2307
+ * Perfect for Lambda-based apps where a traditional Redis cluster would be wasteful.
2308
+ * Accessible over HTTPS (REST API) or standard Redis protocol. Great for caching, sessions, rate limiting.
1982
2309
  */
1983
2310
  constructor(properties: import('./plain').UpstashRedisProps);
1984
2311
  constructor(name: string, properties: import('./plain').UpstashRedisProps);
@@ -1999,11 +2326,11 @@ export declare class UpstashRedis extends BaseResource {
1999
2326
  }
2000
2327
  export declare class SqsQueue extends BaseResource {
2001
2328
  /**
2002
- * #### SQS Queue
2329
+ * #### Message queue for decoupling services. Producers send messages, consumers process them at their own pace.
2003
2330
  *
2004
2331
  * ---
2005
2332
  *
2006
- * A fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and serverless applications.
2333
+ * Fully managed, serverless, pay-per-message. Use for background processing, task queues, or buffering between services.
2007
2334
  */
2008
2335
  constructor(properties: SqsQueuePropsWithOverrides);
2009
2336
  constructor(name: string, properties: SqsQueuePropsWithOverrides);
@@ -2016,11 +2343,12 @@ export declare class SqsQueue extends BaseResource {
2016
2343
  }
2017
2344
  export declare class SnsTopic extends BaseResource {
2018
2345
  /**
2019
- * #### Simple Notification Service (SNS) Topic
2346
+ * #### Pub/sub messaging: publish once, deliver to many subscribers (Lambda, SQS, email, SMS, HTTP).
2020
2347
  *
2021
2348
  * ---
2022
2349
  *
2023
- * A managed messaging service for application-to-application (A2A) and application-to-person (A2P) communication. It allows you to send messages (notifications) to a large number of subscribers, including other services, applications, and end-users.
2350
+ * Serverless, pay-per-message. Use when one event needs to trigger multiple actions e.g., order placed
2351
+ * triggers email confirmation + inventory update + analytics. Subscribers are configured on the subscriber side.
2024
2352
  */
2025
2353
  constructor(properties: SnsTopicPropsWithOverrides);
2026
2354
  constructor(name: string, properties: SnsTopicPropsWithOverrides);
@@ -2031,26 +2359,24 @@ export declare class SnsTopic extends BaseResource {
2031
2359
  }
2032
2360
  export declare class KinesisStream extends BaseResource {
2033
2361
  /**
2034
- * #### Kinesis Data Stream
2362
+ * #### Real-time data stream for ingesting high-volume events (logs, clickstreams, IoT, analytics).
2035
2363
  *
2036
2364
  * ---
2037
2365
  *
2038
- * A fully managed, scalable, and durable real-time data streaming service that can continuously capture gigabytes of data per second from hundreds of thousands of sources.
2039
- *
2040
- * Kinesis Data Streams is commonly used for log and event data collection, real-time analytics, mobile data capture, and IoT data processing.
2041
- *
2042
- * For more information, see the [AWS documentation on Kinesis Data Streams](https://docs.aws.amazon.com/streams/latest/dev/introduction.html).
2366
+ * Continuously captures data from many producers. Consumers (Lambda functions, etc.) process records in order.
2367
+ * Use when you need real-time processing with sub-second latency, not just async messaging (use SQS for that).
2043
2368
  */
2044
2369
  constructor(properties: KinesisStreamPropsWithOverrides);
2045
2370
  constructor(name: string, properties: KinesisStreamPropsWithOverrides);
2046
2371
  }
2047
2372
  export declare class WebAppFirewall extends BaseResource {
2048
2373
  /**
2049
- * #### Web Application Firewall
2374
+ * #### Protects your APIs and websites from common attacks (SQL injection, XSS, bots, DDoS).
2050
2375
  *
2051
2376
  * ---
2052
2377
  *
2053
- * A firewall that helps protect your resources from common web exploits that could affect application availability, compromise security, or consume excessive resources.
2378
+ * Attach to an HTTP API Gateway, Application Load Balancer, or CDN. Comes with AWS-managed rule sets
2379
+ * by default. Costs ~$5/month base + $1/million requests inspected.
2054
2380
  */
2055
2381
  constructor(properties: WebAppFirewallPropsWithOverrides);
2056
2382
  constructor(name: string, properties: WebAppFirewallPropsWithOverrides);
@@ -2061,11 +2387,12 @@ export declare class WebAppFirewall extends BaseResource {
2061
2387
  }
2062
2388
  export declare class OpenSearchDomain extends BaseResource {
2063
2389
  /**
2064
- * #### OpenSearch Domain
2390
+ * #### Managed search and analytics engine (OpenSearch/Elasticsearch compatible).
2065
2391
  *
2066
2392
  * ---
2067
2393
  *
2068
- * A fully managed OpenSearch (or Elasticsearch) cluster.
2394
+ * Full-text search, log analytics, and real-time dashboards. Use for search features in your app,
2395
+ * centralized logging, or time-series data analysis. Costs start at ~$50/month (single small node).
2069
2396
  */
2070
2397
  constructor(properties: OpenSearchDomainPropsWithOverrides);
2071
2398
  constructor(name: string, properties: OpenSearchDomainPropsWithOverrides);
@@ -2076,11 +2403,13 @@ export declare class OpenSearchDomain extends BaseResource {
2076
2403
  }
2077
2404
  export declare class EfsFilesystem extends BaseResource {
2078
2405
  /**
2079
- * #### EFS Filesystem
2406
+ * #### Shared file storage that multiple containers can read/write simultaneously.
2080
2407
  *
2081
2408
  * ---
2082
2409
  *
2083
- * A fully managed, elastic, and scalable file storage service for use with AWS cloud services.
2410
+ * Persistent, elastic (grows/shrinks automatically), and accessible from any container in your stack
2411
+ * via `volumeMounts`. Use for shared uploads, CMS media, ML model files, or anything that needs to
2412
+ * survive container restarts. Pay only for storage used (~$0.30/GB/month for standard access).
2084
2413
  */
2085
2414
  constructor(properties: EfsFilesystemPropsWithOverrides);
2086
2415
  constructor(name: string, properties: EfsFilesystemPropsWithOverrides);
@@ -2091,26 +2420,92 @@ export declare class EfsFilesystem extends BaseResource {
2091
2420
  }
2092
2421
  export declare class NextjsWeb extends BaseResource {
2093
2422
  /**
2094
- * #### A resource for deploying and hosting Next.js applications.
2423
+ * #### Deploy a Next.js app with SSR on AWS Lambda, static assets on S3, and a CloudFront CDN.
2095
2424
  *
2096
2425
  * ---
2097
2426
  *
2098
- * This resource is purpose-built for Next.js and runs your application's server-side logic in AWS Lambda or Lambda@Edge.
2099
- * It seamlessly integrates your Next.js application with other resources in your infrastructure.
2427
+ * Handles ISR (Incremental Static Regeneration), image optimization, and middleware out of the box.
2428
+ * Optionally deploy to Lambda@Edge for lower latency or enable response streaming.
2100
2429
  */
2101
2430
  constructor(properties: NextjsWebProps);
2102
2431
  constructor(name: string, properties: NextjsWebProps);
2103
2432
  /** Website URL */
2104
2433
  readonly url: string;
2105
2434
  }
2435
+ export declare class AstroWeb extends BaseResource {
2436
+ /**
2437
+ * #### Deploy an Astro SSR app with Lambda for server rendering, S3 for static assets, and CloudFront CDN.
2438
+ *
2439
+ * ---
2440
+ *
2441
+ * For static-only Astro sites, use `hosting-bucket` with `hostingContentType: 'astro-static-website'` instead.
2442
+ */
2443
+ constructor(properties: AstroWebPropsWithOverrides);
2444
+ constructor(name: string, properties: AstroWebPropsWithOverrides);
2445
+ /** Website URL */
2446
+ readonly url: string;
2447
+ }
2448
+ export declare class NuxtWeb extends BaseResource {
2449
+ /**
2450
+ * #### Deploy a Nuxt SSR app with Lambda (Nitro aws-lambda preset), S3 for static assets, and CloudFront CDN.
2451
+ *
2452
+ * ---
2453
+ *
2454
+ * For static-only Nuxt sites, use `hosting-bucket` with `hostingContentType: 'nuxt-static-website'` instead.
2455
+ */
2456
+ constructor(properties: NuxtWebPropsWithOverrides);
2457
+ constructor(name: string, properties: NuxtWebPropsWithOverrides);
2458
+ /** Website URL */
2459
+ readonly url: string;
2460
+ }
2461
+ export declare class SvelteKitWeb extends BaseResource {
2462
+ /**
2463
+ * #### Deploy a SvelteKit SSR app with Lambda (AWS adapter), S3 for static assets, and CloudFront CDN.
2464
+ *
2465
+ * ---
2466
+ *
2467
+ * For static-only SvelteKit sites, use `hosting-bucket` with `hostingContentType: 'sveltekit-static-website'` instead.
2468
+ */
2469
+ constructor(properties: SvelteKitWebPropsWithOverrides);
2470
+ constructor(name: string, properties: SvelteKitWebPropsWithOverrides);
2471
+ /** Website URL */
2472
+ readonly url: string;
2473
+ }
2474
+ export declare class SolidStartWeb extends BaseResource {
2475
+ /**
2476
+ * #### Deploy a SolidStart SSR app with Lambda (AWS adapter), S3 for static assets, and CloudFront CDN.
2477
+ */
2478
+ constructor(properties: SolidStartWebPropsWithOverrides);
2479
+ constructor(name: string, properties: SolidStartWebPropsWithOverrides);
2480
+ /** Website URL */
2481
+ readonly url: string;
2482
+ }
2483
+ export declare class TanStackWeb extends BaseResource {
2484
+ /**
2485
+ * #### Deploy a TanStack Start SSR app with Lambda (Nitro aws-lambda preset), S3 for static assets, and CloudFront CDN.
2486
+ */
2487
+ constructor(properties: TanStackWebPropsWithOverrides);
2488
+ constructor(name: string, properties: TanStackWebPropsWithOverrides);
2489
+ /** Website URL */
2490
+ readonly url: string;
2491
+ }
2492
+ export declare class RemixWeb extends BaseResource {
2493
+ /**
2494
+ * #### Deploy a Remix SSR app with Lambda for server rendering, S3 for static assets, and CloudFront CDN.
2495
+ */
2496
+ constructor(properties: RemixWebPropsWithOverrides);
2497
+ constructor(name: string, properties: RemixWebPropsWithOverrides);
2498
+ /** Website URL */
2499
+ readonly url: string;
2500
+ }
2106
2501
  export declare class Bastion extends BaseResource {
2107
2502
  /**
2108
- * #### Bastion Host
2503
+ * #### Secure jump box for accessing private resources (databases, Redis, OpenSearch) in your VPC.
2109
2504
  *
2110
2505
  * ---
2111
2506
  *
2112
- * A bastion host instance that helps you access resources in your stack that are protected within a private network.
2113
- * It leverages keyless SSH connections and tunnels for maximum security.
2507
+ * Uses keyless SSH via AWS Systems Manager no SSH keys to manage. Connect with `stacktape bastion:ssh`
2508
+ * or create port-forwarding tunnels with `stacktape bastion:tunnel`. Costs ~$4/month (t3.micro).
2114
2509
  */
2115
2510
  constructor(properties: BastionPropsWithOverrides);
2116
2511
  constructor(name: string, properties: BastionPropsWithOverrides);
@@ -2123,15 +2518,12 @@ export declare class Bastion extends BaseResource {
2123
2518
 
2124
2519
  export declare class RdsEnginePostgres extends BaseTypeProperties {
2125
2520
  /**
2126
- * #### A standard RDS single-instance database engine.
2521
+ * #### Standard RDS: single-instance database with predictable pricing.
2127
2522
  *
2128
2523
  * ---
2129
2524
  *
2130
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2131
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2132
- *
2133
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2134
- * and failure detection. For high availability, enable multi-AZ deployment.
2525
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2526
+ * For high availability, enable `multiAz` on the primary instance.
2135
2527
  */
2136
2528
  constructor(properties: import('./plain').RdsEngineProperties);
2137
2529
  readonly type: 'postgres';
@@ -2139,15 +2531,12 @@ export declare class RdsEnginePostgres extends BaseTypeProperties {
2139
2531
 
2140
2532
  export declare class RdsEngineMariadb extends BaseTypeProperties {
2141
2533
  /**
2142
- * #### A standard RDS single-instance database engine.
2534
+ * #### Standard RDS: single-instance database with predictable pricing.
2143
2535
  *
2144
2536
  * ---
2145
2537
  *
2146
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2147
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2148
- *
2149
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2150
- * and failure detection. For high availability, enable multi-AZ deployment.
2538
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2539
+ * For high availability, enable `multiAz` on the primary instance.
2151
2540
  */
2152
2541
  constructor(properties: import('./plain').RdsEngineProperties);
2153
2542
  readonly type: 'mariadb';
@@ -2155,15 +2544,12 @@ export declare class RdsEngineMariadb extends BaseTypeProperties {
2155
2544
 
2156
2545
  export declare class RdsEngineMysql extends BaseTypeProperties {
2157
2546
  /**
2158
- * #### A standard RDS single-instance database engine.
2547
+ * #### Standard RDS: single-instance database with predictable pricing.
2159
2548
  *
2160
2549
  * ---
2161
2550
  *
2162
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2163
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2164
- *
2165
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2166
- * and failure detection. For high availability, enable multi-AZ deployment.
2551
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2552
+ * For high availability, enable `multiAz` on the primary instance.
2167
2553
  */
2168
2554
  constructor(properties: import('./plain').RdsEngineProperties);
2169
2555
  readonly type: 'mysql';
@@ -2171,15 +2557,12 @@ export declare class RdsEngineMysql extends BaseTypeProperties {
2171
2557
 
2172
2558
  export declare class RdsEngineOracleEE extends BaseTypeProperties {
2173
2559
  /**
2174
- * #### A standard RDS single-instance database engine.
2560
+ * #### Standard RDS: single-instance database with predictable pricing.
2175
2561
  *
2176
2562
  * ---
2177
2563
  *
2178
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2179
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2180
- *
2181
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2182
- * and failure detection. For high availability, enable multi-AZ deployment.
2564
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2565
+ * For high availability, enable `multiAz` on the primary instance.
2183
2566
  */
2184
2567
  constructor(properties: import('./plain').RdsEngineProperties);
2185
2568
  readonly type: 'oracle-ee';
@@ -2187,15 +2570,12 @@ export declare class RdsEngineOracleEE extends BaseTypeProperties {
2187
2570
 
2188
2571
  export declare class RdsEngineOracleSE2 extends BaseTypeProperties {
2189
2572
  /**
2190
- * #### A standard RDS single-instance database engine.
2573
+ * #### Standard RDS: single-instance database with predictable pricing.
2191
2574
  *
2192
2575
  * ---
2193
2576
  *
2194
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2195
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2196
- *
2197
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2198
- * and failure detection. For high availability, enable multi-AZ deployment.
2577
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2578
+ * For high availability, enable `multiAz` on the primary instance.
2199
2579
  */
2200
2580
  constructor(properties: import('./plain').RdsEngineProperties);
2201
2581
  readonly type: 'oracle-se2';
@@ -2203,15 +2583,12 @@ export declare class RdsEngineOracleSE2 extends BaseTypeProperties {
2203
2583
 
2204
2584
  export declare class RdsEngineSqlServerEE extends BaseTypeProperties {
2205
2585
  /**
2206
- * #### A standard RDS single-instance database engine.
2586
+ * #### Standard RDS: single-instance database with predictable pricing.
2207
2587
  *
2208
2588
  * ---
2209
2589
  *
2210
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2211
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2212
- *
2213
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2214
- * and failure detection. For high availability, enable multi-AZ deployment.
2590
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2591
+ * For high availability, enable `multiAz` on the primary instance.
2215
2592
  */
2216
2593
  constructor(properties: import('./plain').RdsEngineProperties);
2217
2594
  readonly type: 'sqlserver-ee';
@@ -2219,15 +2596,12 @@ export declare class RdsEngineSqlServerEE extends BaseTypeProperties {
2219
2596
 
2220
2597
  export declare class RdsEngineSqlServerEX extends BaseTypeProperties {
2221
2598
  /**
2222
- * #### A standard RDS single-instance database engine.
2599
+ * #### Standard RDS: single-instance database with predictable pricing.
2223
2600
  *
2224
2601
  * ---
2225
2602
  *
2226
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2227
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2228
- *
2229
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2230
- * and failure detection. For high availability, enable multi-AZ deployment.
2603
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2604
+ * For high availability, enable `multiAz` on the primary instance.
2231
2605
  */
2232
2606
  constructor(properties: import('./plain').RdsEngineProperties);
2233
2607
  readonly type: 'sqlserver-ex';
@@ -2235,15 +2609,12 @@ export declare class RdsEngineSqlServerEX extends BaseTypeProperties {
2235
2609
 
2236
2610
  export declare class RdsEngineSqlServerSE extends BaseTypeProperties {
2237
2611
  /**
2238
- * #### A standard RDS single-instance database engine.
2612
+ * #### Standard RDS: single-instance database with predictable pricing.
2239
2613
  *
2240
2614
  * ---
2241
2615
  *
2242
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2243
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2244
- *
2245
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2246
- * and failure detection. For high availability, enable multi-AZ deployment.
2616
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2617
+ * For high availability, enable `multiAz` on the primary instance.
2247
2618
  */
2248
2619
  constructor(properties: import('./plain').RdsEngineProperties);
2249
2620
  readonly type: 'sqlserver-se';
@@ -2251,15 +2622,12 @@ export declare class RdsEngineSqlServerSE extends BaseTypeProperties {
2251
2622
 
2252
2623
  export declare class RdsEngineSqlServerWeb extends BaseTypeProperties {
2253
2624
  /**
2254
- * #### A standard RDS single-instance database engine.
2625
+ * #### Standard RDS: single-instance database with predictable pricing.
2255
2626
  *
2256
2627
  * ---
2257
2628
  *
2258
- * RDS engines are fully managed, single-node databases ideal for standard workloads.
2259
- * Supported engines include PostgreSQL, MySQL, MariaDB, Oracle, and SQL Server.
2260
- *
2261
- * RDS handles routine database tasks such as provisioning, patching, backup, recovery,
2262
- * and failure detection. For high availability, enable multi-AZ deployment.
2629
+ * Choose a fixed instance size and pay hourly. AWS handles patching, backups, and recovery.
2630
+ * For high availability, enable `multiAz` on the primary instance.
2263
2631
  */
2264
2632
  constructor(properties: import('./plain').RdsEngineProperties);
2265
2633
  readonly type: 'sqlserver-web';
@@ -2267,15 +2635,12 @@ export declare class RdsEngineSqlServerWeb extends BaseTypeProperties {
2267
2635
 
2268
2636
  export declare class AuroraEnginePostgresql extends BaseTypeProperties {
2269
2637
  /**
2270
- * #### A high-performance Aurora clustered database engine.
2638
+ * #### Aurora: high-performance clustered database with auto-failover.
2271
2639
  *
2272
2640
  * ---
2273
2641
  *
2274
- * Aurora is a fully managed, MySQL and PostgreSQL-compatible database developed by AWS.
2275
- * It offers up to 5x the throughput of standard MySQL and 3x the throughput of standard PostgreSQL.
2276
- *
2277
- * Aurora automatically replicates data across multiple Availability Zones for high availability
2278
- * and provides automatic failover with read replicas.
2642
+ * Up to 5x faster than MySQL, 3x faster than PostgreSQL. Data is replicated across 3 AZs
2643
+ * automatically. If the primary instance fails, a read replica is promoted in seconds.
2279
2644
  */
2280
2645
  constructor(properties: import('./plain').AuroraEngineProperties);
2281
2646
  readonly type: 'aurora-postgresql';
@@ -2283,15 +2648,12 @@ export declare class AuroraEnginePostgresql extends BaseTypeProperties {
2283
2648
 
2284
2649
  export declare class AuroraEngineMysql extends BaseTypeProperties {
2285
2650
  /**
2286
- * #### A high-performance Aurora clustered database engine.
2651
+ * #### Aurora: high-performance clustered database with auto-failover.
2287
2652
  *
2288
2653
  * ---
2289
2654
  *
2290
- * Aurora is a fully managed, MySQL and PostgreSQL-compatible database developed by AWS.
2291
- * It offers up to 5x the throughput of standard MySQL and 3x the throughput of standard PostgreSQL.
2292
- *
2293
- * Aurora automatically replicates data across multiple Availability Zones for high availability
2294
- * and provides automatic failover with read replicas.
2655
+ * Up to 5x faster than MySQL, 3x faster than PostgreSQL. Data is replicated across 3 AZs
2656
+ * automatically. If the primary instance fails, a read replica is promoted in seconds.
2295
2657
  */
2296
2658
  constructor(properties: import('./plain').AuroraEngineProperties);
2297
2659
  readonly type: 'aurora-mysql';
@@ -2299,15 +2661,13 @@ export declare class AuroraEngineMysql extends BaseTypeProperties {
2299
2661
 
2300
2662
  export declare class AuroraServerlessEnginePostgresql extends BaseTypeProperties {
2301
2663
  /**
2302
- * #### An Aurora Serverless v1 database engine.
2664
+ * #### Aurora Serverless v1: auto-scaling database that can pause when idle.
2303
2665
  *
2304
2666
  * ---
2305
2667
  *
2306
- * Aurora Serverless v1 automatically scales compute capacity based on your application's needs.
2307
- * It can pause during periods of inactivity and resume when traffic arrives, making it cost-effective
2308
- * for variable or unpredictable workloads.
2668
+ * Scales compute capacity automatically and pauses during inactivity (you only pay for storage).
2309
2669
  *
2310
- * **Note:** For new projects, consider using Aurora Serverless v2 which offers better scaling.
2670
+ * > **For new projects, use Aurora Serverless v2 instead** it has faster scaling and more granular capacity control.
2311
2671
  */
2312
2672
  constructor(properties: import('./plain').AuroraServerlessEngineProperties);
2313
2673
  readonly type: 'aurora-postgresql-serverless';
@@ -2315,15 +2675,13 @@ export declare class AuroraServerlessEnginePostgresql extends BaseTypeProperties
2315
2675
 
2316
2676
  export declare class AuroraServerlessEngineMysql extends BaseTypeProperties {
2317
2677
  /**
2318
- * #### An Aurora Serverless v1 database engine.
2678
+ * #### Aurora Serverless v1: auto-scaling database that can pause when idle.
2319
2679
  *
2320
2680
  * ---
2321
2681
  *
2322
- * Aurora Serverless v1 automatically scales compute capacity based on your application's needs.
2323
- * It can pause during periods of inactivity and resume when traffic arrives, making it cost-effective
2324
- * for variable or unpredictable workloads.
2682
+ * Scales compute capacity automatically and pauses during inactivity (you only pay for storage).
2325
2683
  *
2326
- * **Note:** For new projects, consider using Aurora Serverless v2 which offers better scaling.
2684
+ * > **For new projects, use Aurora Serverless v2 instead** it has faster scaling and more granular capacity control.
2327
2685
  */
2328
2686
  constructor(properties: import('./plain').AuroraServerlessEngineProperties);
2329
2687
  readonly type: 'aurora-mysql-serverless';
@@ -2331,15 +2689,12 @@ export declare class AuroraServerlessEngineMysql extends BaseTypeProperties {
2331
2689
 
2332
2690
  export declare class AuroraServerlessV2EnginePostgresql extends BaseTypeProperties {
2333
2691
  /**
2334
- * #### An Aurora Serverless v2 database engine (recommended serverless option).
2692
+ * #### Aurora Serverless v2: recommended for most new projects.
2335
2693
  *
2336
2694
  * ---
2337
2695
  *
2338
- * Aurora Serverless v2 provides instant, fine-grained scaling from 0.5 to 128 ACUs.
2339
- * It scales in increments as small as 0.5 ACUs for more precise capacity matching.
2340
- *
2341
- * This is the recommended serverless engine for most use cases, offering better performance
2342
- * and more granular scaling than v1.
2696
+ * Scales instantly from 0.5 to 128 ACUs in 0.5-ACU increments (~1 ACU ≈ 2 GB RAM).
2697
+ * You pay only for the capacity used, making it cost-effective for variable workloads.
2343
2698
  */
2344
2699
  constructor(properties: import('./plain').AuroraServerlessV2EngineProperties);
2345
2700
  readonly type: 'aurora-postgresql-serverless-v2';
@@ -2347,15 +2702,12 @@ export declare class AuroraServerlessV2EnginePostgresql extends BaseTypeProperti
2347
2702
 
2348
2703
  export declare class AuroraServerlessV2EngineMysql extends BaseTypeProperties {
2349
2704
  /**
2350
- * #### An Aurora Serverless v2 database engine (recommended serverless option).
2705
+ * #### Aurora Serverless v2: recommended for most new projects.
2351
2706
  *
2352
2707
  * ---
2353
2708
  *
2354
- * Aurora Serverless v2 provides instant, fine-grained scaling from 0.5 to 128 ACUs.
2355
- * It scales in increments as small as 0.5 ACUs for more precise capacity matching.
2356
- *
2357
- * This is the recommended serverless engine for most use cases, offering better performance
2358
- * and more granular scaling than v1.
2709
+ * Scales instantly from 0.5 to 128 ACUs in 0.5-ACU increments (~1 ACU ≈ 2 GB RAM).
2710
+ * You pay only for the capacity used, making it cost-effective for variable workloads.
2359
2711
  */
2360
2712
  constructor(properties: import('./plain').AuroraServerlessV2EngineProperties);
2361
2713
  readonly type: 'aurora-mysql-serverless-v2';
@@ -2473,11 +2825,11 @@ export declare class StacktapeImageBuildpackPackaging extends BaseTypeProperties
2473
2825
 
2474
2826
  export declare class HttpApiIntegration extends BaseTypeProperties {
2475
2827
  /**
2476
- * #### Triggers a function when a request is made to an HTTP API Gateway.
2828
+ * #### Triggers a function when an HTTP API Gateway receives a matching request.
2477
2829
  *
2478
2830
  * ---
2479
2831
  *
2480
- * Routes are selected based on the most specific match. For more details on route evaluation, see the [AWS documentation](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-routes.html#http-api-develop-routes.evaluation).
2832
+ * Routes are matched by specificity exact paths take priority over wildcard paths.
2481
2833
  */
2482
2834
  constructor(properties: import('./plain').HttpApiIntegration['properties']);
2483
2835
  readonly type: 'http-api-gateway';
@@ -2485,11 +2837,7 @@ export declare class HttpApiIntegration extends BaseTypeProperties {
2485
2837
 
2486
2838
  export declare class S3Integration extends BaseTypeProperties {
2487
2839
  /**
2488
- * #### Triggers a function when a specified event occurs in an S3 bucket.
2489
- *
2490
- * ---
2491
- *
2492
- * For a list of supported event types, see the [AWS documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/notification-how-to-event-types-and-destinations.html#supported-notification-event-types).
2840
+ * #### Triggers a function when files are created, deleted, or restored in an S3 bucket.
2493
2841
  */
2494
2842
  constructor(properties: import('./plain').S3Integration['properties']);
2495
2843
  readonly type: 's3';
@@ -2497,13 +2845,13 @@ export declare class S3Integration extends BaseTypeProperties {
2497
2845
 
2498
2846
  export declare class ScheduleIntegration extends BaseTypeProperties {
2499
2847
  /**
2500
- * #### Triggers a function on a recurring schedule.
2848
+ * #### Triggers a function on a recurring schedule (cron jobs, periodic tasks).
2501
2849
  *
2502
2850
  * ---
2503
2851
  *
2504
- * You can define schedules using two formats:
2505
- * - **Rate expressions**: Run at a regular interval (e.g., `rate(5 minutes)`). See the [AWS documentation on rate expressions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#RateExpressions).
2506
- * - **Cron expressions**: Run at specific times (e.g., `cron(0 18 ? * MON-FRI *)`). See the [AWS documentation on cron expressions](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions).
2852
+ * Two formats:
2853
+ * - **Rate**: `rate(5 minutes)`, `rate(1 hour)`, `rate(7 days)`
2854
+ * - **Cron**: `cron(0 18 ? * MON-FRI *)` (6-field AWS cron, all times UTC)
2507
2855
  */
2508
2856
  constructor(properties: import('./plain').ScheduleIntegration['properties']);
2509
2857
  readonly type: 'schedule';
@@ -2515,9 +2863,7 @@ export declare class SnsIntegration extends BaseTypeProperties {
2515
2863
  *
2516
2864
  * ---
2517
2865
  *
2518
- * Amazon SNS is a fully managed messaging service for both application-to-application (A2A) and application-to-person (A2P) communication.
2519
- *
2520
- * To add a custom SNS topic to your stack, define it as a [CloudFormation resource](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sns-topic.html) in the `cloudformationResources` section of your configuration.
2866
+ * SNS is a pub/sub messaging service. Reference a topic from your stack's `snsTopics` or use an external ARN.
2521
2867
  */
2522
2868
  constructor(properties: import('./plain').SnsIntegration['properties']);
2523
2869
  readonly type: 'sns';
@@ -2529,16 +2875,11 @@ export declare class SqsIntegration extends BaseTypeProperties {
2529
2875
  *
2530
2876
  * ---
2531
2877
  *
2532
- * Messages are processed in batches. A single function invocation can receive multiple messages.
2533
- *
2534
- * > A single SQS queue should only be consumed by one function. If you need multiple consumers for the same message (a "fan-out" pattern), use an SNS topic or an EventBridge event bus.
2535
- *
2536
- * To add a custom SQS queue, define it as a [CloudFormation resource](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html) in the `cloudformationResources` section.
2878
+ * Messages are processed in batches. The function fires when `batchSize` is reached,
2879
+ * `maxBatchWindowSeconds` expires, or the 6 MB payload limit is hit.
2537
2880
  *
2538
- * The function is triggered when:
2539
- * - The batch window (`maxBatchWindowSeconds`) expires.
2540
- * - The maximum batch size (`batchSize`) is reached.
2541
- * - The maximum payload size (6 MB) is reached.
2881
+ * **Important:** A single SQS queue should only have one consumer function. For fan-out (multiple
2882
+ * consumers for the same message), use an SNS topic or EventBridge event bus instead.
2542
2883
  */
2543
2884
  constructor(properties: import('./plain').SqsIntegration['properties']);
2544
2885
  readonly type: 'sqs';
@@ -2550,14 +2891,9 @@ export declare class KinesisIntegration extends BaseTypeProperties {
2550
2891
  *
2551
2892
  * ---
2552
2893
  *
2553
- * Kinesis is suitable for real-time data streaming and processing. Records are processed in batches.
2554
- * For a comparison with SQS, see the [AWS documentation](https://aws.amazon.com/kinesis/data-streams/faqs/).
2555
- *
2556
- * To add a custom Kinesis stream, define it as a [CloudFormation resource](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html) in the `cloudformationResources` section.
2557
- *
2558
- * You can consume messages in two ways:
2559
- * - **Directly**: Polls each shard once per second. Read throughput is shared with other consumers.
2560
- * - **Stream Consumer**: Provides a dedicated connection to each shard for higher throughput and lower latency.
2894
+ * Records are processed in batches. Two consumption modes:
2895
+ * - **Direct**: Polls each shard ~1/sec, throughput shared with other consumers.
2896
+ * - **Stream Consumer** (`autoCreateConsumer`): Dedicated connection per shard — higher throughput, lower latency.
2561
2897
  */
2562
2898
  constructor(properties: import('./plain').KinesisIntegration['properties']);
2563
2899
  readonly type: 'kinesis';
@@ -2565,13 +2901,12 @@ export declare class KinesisIntegration extends BaseTypeProperties {
2565
2901
 
2566
2902
  export declare class DynamoDbIntegration extends BaseTypeProperties {
2567
2903
  /**
2568
- * #### Triggers a function when item-level changes occur in a DynamoDB table.
2904
+ * #### Triggers a function when items are created, updated, or deleted in a DynamoDB table.
2569
2905
  *
2570
2906
  * ---
2571
2907
  *
2572
- * DynamoDB Streams capture a time-ordered sequence of modifications to items in a table.
2573
- * Records are processed in batches.
2574
- * To use this, you must enable streams on your DynamoDB table. For more information, see the [DynamoDB table documentation](https://docs.stacktape.com/resources/dynamo-db-tables/#item-change-streaming).
2908
+ * Records are processed in batches. You must enable streams on the DynamoDB table first
2909
+ * (set `streaming` in your `dynamoDbTables` config).
2575
2910
  */
2576
2911
  constructor(properties: import('./plain').DynamoDbIntegration['properties']);
2577
2912
  readonly type: 'dynamodb';
@@ -2579,11 +2914,11 @@ export declare class DynamoDbIntegration extends BaseTypeProperties {
2579
2914
 
2580
2915
  export declare class CloudwatchLogIntegration extends BaseTypeProperties {
2581
2916
  /**
2582
- * #### Triggers a function when a new log record is added to a CloudWatch log group.
2917
+ * #### Triggers a function when new log records appear in a CloudWatch log group.
2583
2918
  *
2584
2919
  * ---
2585
2920
  *
2586
- * > **Note:** The event payload is BASE64-encoded and gzipped. You will need to decode and decompress it in your function to access the log data.
2921
+ * **Note:** The event payload is base64-encoded and gzipped you must decode and decompress it in your handler.
2587
2922
  */
2588
2923
  constructor(properties: import('./plain').CloudwatchLogIntegration['properties']);
2589
2924
  readonly type: 'cloudwatch-logs';
@@ -2703,7 +3038,7 @@ export declare class RateBasedRule extends BaseTypeProperties {
2703
3038
 
2704
3039
  export declare class SqsQueueEventBusIntegration extends BaseTypeProperties {
2705
3040
  /**
2706
- * #### Delivers messages to an SQS queue when an event matching a specified pattern is received by an event bus.
3041
+ * #### Routes events from an EventBridge event bus to this queue when they match a specified pattern.
2707
3042
  */
2708
3043
  constructor(properties: import('./plain').SqsQueueEventBusIntegration['properties']);
2709
3044
  readonly type: 'event-bus';
@@ -2990,13 +3325,12 @@ export declare class LambdaDurationTrigger extends BaseTypeProperties {
2990
3325
 
2991
3326
  export declare class CustomResourceDefinition extends BaseTypeProperties {
2992
3327
  /**
2993
- * #### Custom resource definition
3328
+ * #### Lambda-backed provisioning logic for resources not natively supported by Stacktape/CloudFormation.
2994
3329
  *
2995
3330
  * ---
2996
3331
  *
2997
- * Defines the provisioning logic for a custom resource.
2998
- * This allows you to create resources that are not natively supported by AWS CloudFormation or to provision services from other cloud providers.
2999
- * The logic is implemented in an AWS Lambda function that is executed during `create`, `update`, and `delete` events.
3332
+ * Your Lambda function runs on stack create, update, and delete events to manage external resources
3333
+ * (third-party APIs, SaaS services, custom infrastructure). Pair with `custom-resource-instance` to use.
3000
3334
  */
3001
3335
  constructor(properties: import('./plain').CustomResourceDefinitionProps);
3002
3336
  readonly type: 'custom-resource-definition';
@@ -3004,12 +3338,7 @@ export declare class CustomResourceDefinition extends BaseTypeProperties {
3004
3338
 
3005
3339
  export declare class CustomResourceInstance extends BaseTypeProperties {
3006
3340
  /**
3007
- * #### Custom resource instance
3008
- *
3009
- * ---
3010
- *
3011
- * Creates an instance of a `custom-resource-definition`.
3012
- * This is useful for creating resources that are not natively supported by AWS CloudFormation or for provisioning services from other providers.
3341
+ * #### An instance of a `custom-resource-definition`. Pass properties to the backing Lambda function.
3013
3342
  */
3014
3343
  constructor(properties: import('./plain').CustomResourceInstanceProps);
3015
3344
  readonly type: 'custom-resource-instance';
@@ -3017,12 +3346,12 @@ export declare class CustomResourceInstance extends BaseTypeProperties {
3017
3346
 
3018
3347
  export declare class DeploymentScript extends BaseTypeProperties {
3019
3348
  /**
3020
- * #### A resource that executes a script as part of your deployment process.
3349
+ * #### Run a script during deploy or delete database migrations, seed data, cleanup tasks.
3021
3350
  *
3022
3351
  * ---
3023
3352
  *
3024
- * The script is executed in a Lambda function during a `deploy` or `delete` operation.
3025
- * This is useful for tasks like database migrations, seeding data, or other setup or teardown operations.
3353
+ * Executes as a Lambda function. Use `after:deploy` to run migrations after resources are ready,
3354
+ * or `before:delete` for cleanup. Can also be triggered manually with `stacktape deployment-script:run`.
3026
3355
  */
3027
3356
  constructor(properties: import('./plain').DeploymentScriptProps);
3028
3357
  readonly type: 'deployment-script';
@@ -3030,12 +3359,12 @@ export declare class DeploymentScript extends BaseTypeProperties {
3030
3359
 
3031
3360
  export declare class EdgeLambdaFunction extends BaseTypeProperties {
3032
3361
  /**
3033
- * #### A specialized Lambda function that runs at AWS edge locations, close to your users.
3362
+ * #### Lambda function that runs at CDN edge locations for request/response manipulation.
3034
3363
  *
3035
3364
  * ---
3036
3365
  *
3037
- * Edge Lambda functions are designed to be executed by a Content Delivery Network (CDN) in response to CDN events.
3038
- * They allow you to customize the content delivered through the CDN, enabling things like header manipulation, URL rewrites, and A/B testing.
3366
+ * Runs on CloudFront events (viewer request, origin request, etc.) to modify headers, rewrite URLs,
3367
+ * implement A/B testing, or add auth checks at the edge. Referenced from CDN `edgeFunctions` config.
3039
3368
  */
3040
3369
  constructor(properties: import('./plain').EdgeLambdaFunctionProps);
3041
3370
  readonly type: 'edge-lambda-function';
@@ -3066,7 +3395,7 @@ export type CloudFormationTemplate = {
3066
3395
  };
3067
3396
 
3068
3397
  export type StacktapeConfig = Omit<import('./plain').StacktapeConfig, 'resources' | 'cloudformationResources' | 'scripts'> & {
3069
- resources: { [resourceName: string]: RelationalDatabase | WebService | PrivateService | WorkerService | MultiContainerWorkload | LambdaFunction | BatchJob | Bucket | HostingBucket | DynamoDbTable | EventBus | HttpApiGateway | ApplicationLoadBalancer | NetworkLoadBalancer | RedisCluster | MongoDbAtlasCluster | StateMachine | UserAuthPool | UpstashRedis | SqsQueue | SnsTopic | KinesisStream | WebAppFirewall | OpenSearchDomain | EfsFilesystem | NextjsWeb | Bastion | StacktapeResourceDefinition };
3398
+ resources: { [resourceName: string]: RelationalDatabase | WebService | PrivateService | WorkerService | MultiContainerWorkload | LambdaFunction | BatchJob | Bucket | HostingBucket | DynamoDbTable | EventBus | HttpApiGateway | ApplicationLoadBalancer | NetworkLoadBalancer | RedisCluster | MongoDbAtlasCluster | StateMachine | UserAuthPool | UpstashRedis | SqsQueue | SnsTopic | KinesisStream | WebAppFirewall | OpenSearchDomain | EfsFilesystem | NextjsWeb | AstroWeb | NuxtWeb | SvelteKitWeb | SolidStartWeb | TanStackWeb | RemixWeb | Bastion | StacktapeResourceDefinition };
3070
3399
  /**
3071
3400
  * #### Scripts that can be executed using the `stacktape script:run` command.
3072
3401
  *