@pulumi/aws 6.78.0-alpha.1745512144 → 6.78.0

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 (61) hide show
  1. package/acm/certificate.d.ts +3 -6
  2. package/acm/certificate.js.map +1 -1
  3. package/amplify/app.d.ts +12 -0
  4. package/amplify/app.js +2 -0
  5. package/amplify/app.js.map +1 -1
  6. package/apigateway/deployment.d.ts +12 -4
  7. package/apigateway/deployment.js.map +1 -1
  8. package/backup/restoreTestingPlan.d.ts +1 -0
  9. package/backup/restoreTestingPlan.js +1 -0
  10. package/backup/restoreTestingPlan.js.map +1 -1
  11. package/codebuild/webhook.d.ts +12 -0
  12. package/codebuild/webhook.js +2 -0
  13. package/codebuild/webhook.js.map +1 -1
  14. package/cognito/userPoolDomain.d.ts +12 -0
  15. package/cognito/userPoolDomain.js +2 -0
  16. package/cognito/userPoolDomain.js.map +1 -1
  17. package/drs/replicationConfigurationTemplate.d.ts +44 -0
  18. package/drs/replicationConfigurationTemplate.js +44 -0
  19. package/drs/replicationConfigurationTemplate.js.map +1 -1
  20. package/ec2/getNetworkInsightsPath.d.ts +8 -0
  21. package/ec2/getNetworkInsightsPath.js.map +1 -1
  22. package/ec2/instance.d.ts +17 -0
  23. package/ec2/instance.js +17 -0
  24. package/ec2/instance.js.map +1 -1
  25. package/ec2/networkInsightsPath.d.ts +11 -3
  26. package/ec2/networkInsightsPath.js +4 -0
  27. package/ec2/networkInsightsPath.js.map +1 -1
  28. package/ec2/vpcIpv6CidrBlockAssociation.d.ts +6 -6
  29. package/eks/cluster.d.ts +12 -0
  30. package/eks/cluster.js +2 -0
  31. package/eks/cluster.js.map +1 -1
  32. package/elasticache/cluster.d.ts +6 -6
  33. package/iot/caCertificate.d.ts +6 -6
  34. package/lakeformation/optIn.d.ts +0 -8
  35. package/lakeformation/optIn.js +0 -8
  36. package/lakeformation/optIn.js.map +1 -1
  37. package/package.json +2 -2
  38. package/redshift/index.d.ts +3 -0
  39. package/redshift/index.js +6 -1
  40. package/redshift/index.js.map +1 -1
  41. package/redshift/integration.d.ts +291 -0
  42. package/redshift/integration.js +188 -0
  43. package/redshift/integration.js.map +1 -0
  44. package/redshiftserverless/workgroup.d.ts +12 -0
  45. package/redshiftserverless/workgroup.js +2 -0
  46. package/redshiftserverless/workgroup.js.map +1 -1
  47. package/sagemaker/imageVersion.d.ts +86 -2
  48. package/sagemaker/imageVersion.js +14 -0
  49. package/sagemaker/imageVersion.js.map +1 -1
  50. package/sagemaker/notebookInstanceLifecycleConfiguration.d.ts +34 -0
  51. package/sagemaker/notebookInstanceLifecycleConfiguration.js +4 -0
  52. package/sagemaker/notebookInstanceLifecycleConfiguration.js.map +1 -1
  53. package/sns/topicSubscription.d.ts +35 -25
  54. package/sns/topicSubscription.js +35 -25
  55. package/sns/topicSubscription.js.map +1 -1
  56. package/transfer/server.d.ts +9 -0
  57. package/transfer/server.js.map +1 -1
  58. package/types/input.d.ts +123 -14
  59. package/types/input.js.map +1 -1
  60. package/types/output.d.ts +151 -14
  61. package/types/output.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -2253,6 +2253,10 @@ export declare namespace amp {
2253
2253
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
2254
2254
  */
2255
2255
  delete?: pulumi.Input<string>;
2256
+ /**
2257
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
2258
+ */
2259
+ update?: pulumi.Input<string>;
2256
2260
  }
2257
2261
  interface WorkspaceLoggingConfiguration {
2258
2262
  /**
@@ -24729,6 +24733,82 @@ export declare namespace ec2 {
24729
24733
  id?: pulumi.Input<string>;
24730
24734
  name?: pulumi.Input<string>;
24731
24735
  }
24736
+ interface NetworkInsightsPathFilterAtDestination {
24737
+ /**
24738
+ * The destination IPv4 address.
24739
+ */
24740
+ destinationAddress?: pulumi.Input<string>;
24741
+ /**
24742
+ * The destination port range. See below for details.
24743
+ */
24744
+ destinationPortRange?: pulumi.Input<inputs.ec2.NetworkInsightsPathFilterAtDestinationDestinationPortRange>;
24745
+ /**
24746
+ * IP address of the source resource.
24747
+ */
24748
+ sourceAddress?: pulumi.Input<string>;
24749
+ /**
24750
+ * The source port range. See below for details.
24751
+ */
24752
+ sourcePortRange?: pulumi.Input<inputs.ec2.NetworkInsightsPathFilterAtDestinationSourcePortRange>;
24753
+ }
24754
+ interface NetworkInsightsPathFilterAtDestinationDestinationPortRange {
24755
+ /**
24756
+ * The first port in the range.
24757
+ */
24758
+ fromPort?: pulumi.Input<number>;
24759
+ /**
24760
+ * The last port in the range.
24761
+ */
24762
+ toPort?: pulumi.Input<number>;
24763
+ }
24764
+ interface NetworkInsightsPathFilterAtDestinationSourcePortRange {
24765
+ /**
24766
+ * The first port in the range.
24767
+ */
24768
+ fromPort?: pulumi.Input<number>;
24769
+ /**
24770
+ * The last port in the range.
24771
+ */
24772
+ toPort?: pulumi.Input<number>;
24773
+ }
24774
+ interface NetworkInsightsPathFilterAtSource {
24775
+ /**
24776
+ * The destination IPv4 address.
24777
+ */
24778
+ destinationAddress?: pulumi.Input<string>;
24779
+ /**
24780
+ * The destination port range. See below for details.
24781
+ */
24782
+ destinationPortRange?: pulumi.Input<inputs.ec2.NetworkInsightsPathFilterAtSourceDestinationPortRange>;
24783
+ /**
24784
+ * IP address of the source resource.
24785
+ */
24786
+ sourceAddress?: pulumi.Input<string>;
24787
+ /**
24788
+ * The source port range. See below for details.
24789
+ */
24790
+ sourcePortRange?: pulumi.Input<inputs.ec2.NetworkInsightsPathFilterAtSourceSourcePortRange>;
24791
+ }
24792
+ interface NetworkInsightsPathFilterAtSourceDestinationPortRange {
24793
+ /**
24794
+ * The first port in the range.
24795
+ */
24796
+ fromPort?: pulumi.Input<number>;
24797
+ /**
24798
+ * The last port in the range.
24799
+ */
24800
+ toPort?: pulumi.Input<number>;
24801
+ }
24802
+ interface NetworkInsightsPathFilterAtSourceSourcePortRange {
24803
+ /**
24804
+ * The first port in the range.
24805
+ */
24806
+ fromPort?: pulumi.Input<number>;
24807
+ /**
24808
+ * The last port in the range.
24809
+ */
24810
+ toPort?: pulumi.Input<number>;
24811
+ }
24732
24812
  interface NetworkInterfaceAttachment {
24733
24813
  attachmentId?: pulumi.Input<string>;
24734
24814
  /**
@@ -38950,6 +39030,9 @@ export declare namespace lakeformation {
38950
39030
  * Name of the table.
38951
39031
  */
38952
39032
  name?: pulumi.Input<string>;
39033
+ /**
39034
+ * Boolean value that indicates whether to use a wildcard representing every table under the specified database. When set to true, this represents all tables within the specified database. At least one of TableResource$Name or TableResource$Wildcard is required.
39035
+ */
38953
39036
  wildcard?: pulumi.Input<boolean>;
38954
39037
  }
38955
39038
  interface OptInResourceDataTableWithColumns {
@@ -56790,7 +56873,7 @@ export declare namespace networkfirewall {
56790
56873
  }
56791
56874
  interface FirewallSubnetMapping {
56792
56875
  /**
56793
- * The subnet's IP address type. Valida values: `"DUALSTACK"`, `"IPV4"`.
56876
+ * The subnet's IP address type. Valid values: `"DUALSTACK"`, `"IPV4"`.
56794
56877
  */
56795
56878
  ipAddressType?: pulumi.Input<string>;
56796
56879
  /**
@@ -62674,6 +62757,20 @@ export declare namespace redshift {
62674
62757
  */
62675
62758
  producerArn?: pulumi.Input<string>;
62676
62759
  }
62760
+ interface IntegrationTimeouts {
62761
+ /**
62762
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
62763
+ */
62764
+ create?: pulumi.Input<string>;
62765
+ /**
62766
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
62767
+ */
62768
+ delete?: pulumi.Input<string>;
62769
+ /**
62770
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
62771
+ */
62772
+ update?: pulumi.Input<string>;
62773
+ }
62677
62774
  interface ParameterGroupParameter {
62678
62775
  /**
62679
62776
  * The name of the Redshift parameter.
@@ -62828,6 +62925,16 @@ export declare namespace redshiftserverless {
62828
62925
  */
62829
62926
  subnetId?: pulumi.Input<string>;
62830
62927
  }
62928
+ interface WorkgroupPricePerformanceTarget {
62929
+ /**
62930
+ * Whether to enable price-performance scaling.
62931
+ */
62932
+ enabled: pulumi.Input<boolean>;
62933
+ /**
62934
+ * The price-performance scaling level. Valid values are `1` (LOW_COST), `25` (ECONOMICAL), `50` (BALANCED), `75` (RESOURCEFUL), and `100` (HIGH_PERFORMANCE).
62935
+ */
62936
+ level?: pulumi.Input<number>;
62937
+ }
62831
62938
  }
62832
62939
  export declare namespace rekognition {
62833
62940
  interface CollectionTimeouts {
@@ -64868,7 +64975,9 @@ export declare namespace s3 {
64868
64975
  */
64869
64976
  prefix?: pulumi.Input<string>;
64870
64977
  /**
64871
- * Key-value map of resource tags. All of these tags must exist in the object's tag set in order for the rule to apply.
64978
+ * Key-value map of resource tags.
64979
+ * All of these tags must exist in the object's tag set in order for the rule to apply.
64980
+ * If set, must contain at least one key-value pair.
64872
64981
  */
64873
64982
  tags?: pulumi.Input<{
64874
64983
  [key: string]: pulumi.Input<string>;
@@ -76676,7 +76785,7 @@ export declare namespace wafv2 {
76676
76785
  */
76677
76786
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa3Fingerprint>;
76678
76787
  /**
76679
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
76788
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
76680
76789
  */
76681
76790
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa4Fingerprint>;
76682
76791
  /**
@@ -77204,7 +77313,7 @@ export declare namespace wafv2 {
77204
77313
  */
77205
77314
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa3Fingerprint>;
77206
77315
  /**
77207
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77316
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77208
77317
  */
77209
77318
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa4Fingerprint>;
77210
77319
  /**
@@ -77472,7 +77581,7 @@ export declare namespace wafv2 {
77472
77581
  */
77473
77582
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa3Fingerprint>;
77474
77583
  /**
77475
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77584
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77476
77585
  */
77477
77586
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa4Fingerprint>;
77478
77587
  /**
@@ -77674,7 +77783,7 @@ export declare namespace wafv2 {
77674
77783
  */
77675
77784
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint>;
77676
77785
  /**
77677
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77786
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77678
77787
  */
77679
77788
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint>;
77680
77789
  /**
@@ -77880,7 +77989,7 @@ export declare namespace wafv2 {
77880
77989
  */
77881
77990
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa3Fingerprint>;
77882
77991
  /**
77883
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77992
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77884
77993
  */
77885
77994
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa4Fingerprint>;
77886
77995
  /**
@@ -78082,7 +78191,7 @@ export declare namespace wafv2 {
78082
78191
  */
78083
78192
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa3Fingerprint>;
78084
78193
  /**
78085
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78194
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78086
78195
  */
78087
78196
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa4Fingerprint>;
78088
78197
  /**
@@ -78280,7 +78389,7 @@ export declare namespace wafv2 {
78280
78389
  */
78281
78390
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa3Fingerprint>;
78282
78391
  /**
78283
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78392
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78284
78393
  */
78285
78394
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa4Fingerprint>;
78286
78395
  /**
@@ -78482,7 +78591,7 @@ export declare namespace wafv2 {
78482
78591
  */
78483
78592
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa3Fingerprint>;
78484
78593
  /**
78485
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78594
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78486
78595
  */
78487
78596
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa4Fingerprint>;
78488
78597
  /**
@@ -78684,7 +78793,7 @@ export declare namespace wafv2 {
78684
78793
  */
78685
78794
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint>;
78686
78795
  /**
78687
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78796
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78688
78797
  */
78689
78798
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint>;
78690
78799
  /**
@@ -78890,7 +78999,7 @@ export declare namespace wafv2 {
78890
78999
  */
78891
79000
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa3Fingerprint>;
78892
79001
  /**
78893
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79002
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78894
79003
  */
78895
79004
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa4Fingerprint>;
78896
79005
  /**
@@ -79092,7 +79201,7 @@ export declare namespace wafv2 {
79092
79201
  */
79093
79202
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa3Fingerprint>;
79094
79203
  /**
79095
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79204
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
79096
79205
  */
79097
79206
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa4Fingerprint>;
79098
79207
  /**
@@ -79290,7 +79399,7 @@ export declare namespace wafv2 {
79290
79399
  */
79291
79400
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa3Fingerprint>;
79292
79401
  /**
79293
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79402
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
79294
79403
  */
79295
79404
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa4Fingerprint>;
79296
79405
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAo4rBjF,IAAiB,GAAG,CA8/JnB;AA9/JD,WAAiB,GAAG;IAykIhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AAy3BL,CAAC,EA9/JgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA8/JnB;AAkosCD,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAw4rBjF,IAAiB,GAAG,CAglKnB;AAhlKD,WAAiB,GAAG;IA2pIhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AAy3BL,CAAC,EAhlKgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAglKnB;AAqosCD,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
package/types/output.d.ts CHANGED
@@ -1087,6 +1087,10 @@ export declare namespace amp {
1087
1087
  * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
1088
1088
  */
1089
1089
  delete?: string;
1090
+ /**
1091
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
1092
+ */
1093
+ update?: string;
1090
1094
  }
1091
1095
  interface WorkspaceLoggingConfiguration {
1092
1096
  /**
@@ -27729,6 +27733,34 @@ export declare namespace ec2 {
27729
27733
  */
27730
27734
  values: string[];
27731
27735
  }
27736
+ interface GetNetworkInsightsPathFilterAtDestination {
27737
+ destinationAddress: string;
27738
+ destinationPortRanges: outputs.ec2.GetNetworkInsightsPathFilterAtDestinationDestinationPortRange[];
27739
+ sourceAddress: string;
27740
+ sourcePortRanges: outputs.ec2.GetNetworkInsightsPathFilterAtDestinationSourcePortRange[];
27741
+ }
27742
+ interface GetNetworkInsightsPathFilterAtDestinationDestinationPortRange {
27743
+ fromPort: number;
27744
+ toPort: number;
27745
+ }
27746
+ interface GetNetworkInsightsPathFilterAtDestinationSourcePortRange {
27747
+ fromPort: number;
27748
+ toPort: number;
27749
+ }
27750
+ interface GetNetworkInsightsPathFilterAtSource {
27751
+ destinationAddress: string;
27752
+ destinationPortRanges: outputs.ec2.GetNetworkInsightsPathFilterAtSourceDestinationPortRange[];
27753
+ sourceAddress: string;
27754
+ sourcePortRanges: outputs.ec2.GetNetworkInsightsPathFilterAtSourceSourcePortRange[];
27755
+ }
27756
+ interface GetNetworkInsightsPathFilterAtSourceDestinationPortRange {
27757
+ fromPort: number;
27758
+ toPort: number;
27759
+ }
27760
+ interface GetNetworkInsightsPathFilterAtSourceSourcePortRange {
27761
+ fromPort: number;
27762
+ toPort: number;
27763
+ }
27732
27764
  interface GetNetworkInterfaceAssociation {
27733
27765
  /**
27734
27766
  * Allocation ID.
@@ -30249,6 +30281,82 @@ export declare namespace ec2 {
30249
30281
  id: string;
30250
30282
  name: string;
30251
30283
  }
30284
+ interface NetworkInsightsPathFilterAtDestination {
30285
+ /**
30286
+ * The destination IPv4 address.
30287
+ */
30288
+ destinationAddress?: string;
30289
+ /**
30290
+ * The destination port range. See below for details.
30291
+ */
30292
+ destinationPortRange?: outputs.ec2.NetworkInsightsPathFilterAtDestinationDestinationPortRange;
30293
+ /**
30294
+ * IP address of the source resource.
30295
+ */
30296
+ sourceAddress?: string;
30297
+ /**
30298
+ * The source port range. See below for details.
30299
+ */
30300
+ sourcePortRange?: outputs.ec2.NetworkInsightsPathFilterAtDestinationSourcePortRange;
30301
+ }
30302
+ interface NetworkInsightsPathFilterAtDestinationDestinationPortRange {
30303
+ /**
30304
+ * The first port in the range.
30305
+ */
30306
+ fromPort?: number;
30307
+ /**
30308
+ * The last port in the range.
30309
+ */
30310
+ toPort?: number;
30311
+ }
30312
+ interface NetworkInsightsPathFilterAtDestinationSourcePortRange {
30313
+ /**
30314
+ * The first port in the range.
30315
+ */
30316
+ fromPort?: number;
30317
+ /**
30318
+ * The last port in the range.
30319
+ */
30320
+ toPort?: number;
30321
+ }
30322
+ interface NetworkInsightsPathFilterAtSource {
30323
+ /**
30324
+ * The destination IPv4 address.
30325
+ */
30326
+ destinationAddress?: string;
30327
+ /**
30328
+ * The destination port range. See below for details.
30329
+ */
30330
+ destinationPortRange?: outputs.ec2.NetworkInsightsPathFilterAtSourceDestinationPortRange;
30331
+ /**
30332
+ * IP address of the source resource.
30333
+ */
30334
+ sourceAddress?: string;
30335
+ /**
30336
+ * The source port range. See below for details.
30337
+ */
30338
+ sourcePortRange?: outputs.ec2.NetworkInsightsPathFilterAtSourceSourcePortRange;
30339
+ }
30340
+ interface NetworkInsightsPathFilterAtSourceDestinationPortRange {
30341
+ /**
30342
+ * The first port in the range.
30343
+ */
30344
+ fromPort?: number;
30345
+ /**
30346
+ * The last port in the range.
30347
+ */
30348
+ toPort?: number;
30349
+ }
30350
+ interface NetworkInsightsPathFilterAtSourceSourcePortRange {
30351
+ /**
30352
+ * The first port in the range.
30353
+ */
30354
+ fromPort?: number;
30355
+ /**
30356
+ * The last port in the range.
30357
+ */
30358
+ toPort?: number;
30359
+ }
30252
30360
  interface NetworkInterfaceAttachment {
30253
30361
  attachmentId: string;
30254
30362
  /**
@@ -46063,6 +46171,9 @@ export declare namespace lakeformation {
46063
46171
  * Name of the table.
46064
46172
  */
46065
46173
  name?: string;
46174
+ /**
46175
+ * Boolean value that indicates whether to use a wildcard representing every table under the specified database. When set to true, this represents all tables within the specified database. At least one of TableResource$Name or TableResource$Wildcard is required.
46176
+ */
46066
46177
  wildcard?: boolean;
46067
46178
  }
46068
46179
  interface OptInResourceDataTableWithColumns {
@@ -64169,7 +64280,7 @@ export declare namespace networkfirewall {
64169
64280
  }
64170
64281
  interface FirewallSubnetMapping {
64171
64282
  /**
64172
- * The subnet's IP address type. Valida values: `"DUALSTACK"`, `"IPV4"`.
64283
+ * The subnet's IP address type. Valid values: `"DUALSTACK"`, `"IPV4"`.
64173
64284
  */
64174
64285
  ipAddressType: string;
64175
64286
  /**
@@ -70684,6 +70795,20 @@ export declare namespace redshift {
70684
70795
  */
70685
70796
  producerArn: string;
70686
70797
  }
70798
+ interface IntegrationTimeouts {
70799
+ /**
70800
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
70801
+ */
70802
+ create?: string;
70803
+ /**
70804
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
70805
+ */
70806
+ delete?: string;
70807
+ /**
70808
+ * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
70809
+ */
70810
+ update?: string;
70811
+ }
70687
70812
  interface ParameterGroupParameter {
70688
70813
  /**
70689
70814
  * The name of the Redshift parameter.
@@ -70884,6 +71009,16 @@ export declare namespace redshiftserverless {
70884
71009
  */
70885
71010
  subnetId: string;
70886
71011
  }
71012
+ interface WorkgroupPricePerformanceTarget {
71013
+ /**
71014
+ * Whether to enable price-performance scaling.
71015
+ */
71016
+ enabled: boolean;
71017
+ /**
71018
+ * The price-performance scaling level. Valid values are `1` (LOW_COST), `25` (ECONOMICAL), `50` (BALANCED), `75` (RESOURCEFUL), and `100` (HIGH_PERFORMANCE).
71019
+ */
71020
+ level?: number;
71021
+ }
70887
71022
  }
70888
71023
  export declare namespace rekognition {
70889
71024
  interface CollectionTimeouts {
@@ -73018,7 +73153,9 @@ export declare namespace s3 {
73018
73153
  */
73019
73154
  prefix: string;
73020
73155
  /**
73021
- * Key-value map of resource tags. All of these tags must exist in the object's tag set in order for the rule to apply.
73156
+ * Key-value map of resource tags.
73157
+ * All of these tags must exist in the object's tag set in order for the rule to apply.
73158
+ * If set, must contain at least one key-value pair.
73022
73159
  */
73023
73160
  tags?: {
73024
73161
  [key: string]: string;
@@ -85436,7 +85573,7 @@ export declare namespace wafv2 {
85436
85573
  */
85437
85574
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa3Fingerprint;
85438
85575
  /**
85439
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
85576
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
85440
85577
  */
85441
85578
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa4Fingerprint;
85442
85579
  /**
@@ -85964,7 +86101,7 @@ export declare namespace wafv2 {
85964
86101
  */
85965
86102
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa3Fingerprint;
85966
86103
  /**
85967
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86104
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
85968
86105
  */
85969
86106
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa4Fingerprint;
85970
86107
  /**
@@ -86232,7 +86369,7 @@ export declare namespace wafv2 {
86232
86369
  */
86233
86370
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa3Fingerprint;
86234
86371
  /**
86235
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86372
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86236
86373
  */
86237
86374
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa4Fingerprint;
86238
86375
  /**
@@ -86434,7 +86571,7 @@ export declare namespace wafv2 {
86434
86571
  */
86435
86572
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint;
86436
86573
  /**
86437
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86574
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86438
86575
  */
86439
86576
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint;
86440
86577
  /**
@@ -86640,7 +86777,7 @@ export declare namespace wafv2 {
86640
86777
  */
86641
86778
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa3Fingerprint;
86642
86779
  /**
86643
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86780
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86644
86781
  */
86645
86782
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa4Fingerprint;
86646
86783
  /**
@@ -86842,7 +86979,7 @@ export declare namespace wafv2 {
86842
86979
  */
86843
86980
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa3Fingerprint;
86844
86981
  /**
86845
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86982
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86846
86983
  */
86847
86984
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa4Fingerprint;
86848
86985
  /**
@@ -87040,7 +87177,7 @@ export declare namespace wafv2 {
87040
87177
  */
87041
87178
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa3Fingerprint;
87042
87179
  /**
87043
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87180
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87044
87181
  */
87045
87182
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa4Fingerprint;
87046
87183
  /**
@@ -87242,7 +87379,7 @@ export declare namespace wafv2 {
87242
87379
  */
87243
87380
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa3Fingerprint;
87244
87381
  /**
87245
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87382
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87246
87383
  */
87247
87384
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa4Fingerprint;
87248
87385
  /**
@@ -87444,7 +87581,7 @@ export declare namespace wafv2 {
87444
87581
  */
87445
87582
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint;
87446
87583
  /**
87447
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87584
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87448
87585
  */
87449
87586
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint;
87450
87587
  /**
@@ -87650,7 +87787,7 @@ export declare namespace wafv2 {
87650
87787
  */
87651
87788
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa3Fingerprint;
87652
87789
  /**
87653
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87790
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87654
87791
  */
87655
87792
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa4Fingerprint;
87656
87793
  /**
@@ -87852,7 +87989,7 @@ export declare namespace wafv2 {
87852
87989
  */
87853
87990
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa3Fingerprint;
87854
87991
  /**
87855
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87992
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87856
87993
  */
87857
87994
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa4Fingerprint;
87858
87995
  /**
@@ -88050,7 +88187,7 @@ export declare namespace wafv2 {
88050
88187
  */
88051
88188
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa3Fingerprint;
88052
88189
  /**
88053
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
88190
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
88054
88191
  */
88055
88192
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa4Fingerprint;
88056
88193
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA8p1BjF,IAAiB,GAAG,CAurMnB;AAvrMD,WAAiB,GAAG;IAiwKhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AA03BL,CAAC,EAvrMgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAurMnB;AAq4xCD,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAkq1BjF,IAAiB,GAAG,CA2yMnB;AA3yMD,WAAiB,GAAG;IAq3KhB;;OAEG;IACH,SAAgB,kCAAkC,CAAC,GAAwB;;QACvE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,sCAAkC,qCAKjD,CAAA;IA4CD;;OAEG;IACH,SAAgB,mCAAmC,CAAC,GAAyB;;QACzE,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,EAAE,IACtC;IACN,CAAC;IALe,uCAAmC,sCAKlD,CAAA;AA03BL,CAAC,EA3yMgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA2yMnB;AAw4xCD,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}