@pulumi/aws 6.78.0-alpha.1744809351 → 6.78.0-alpha.1745513490

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 (63) 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 +131 -14
  59. package/types/input.js +20 -1
  60. package/types/input.js.map +1 -1
  61. package/types/output.d.ts +161 -16
  62. package/types/output.js +20 -1
  63. 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
  /**
@@ -24862,6 +24942,10 @@ export declare namespace ec2 {
24862
24942
  */
24863
24943
  toPort: pulumi.Input<number>;
24864
24944
  }
24945
+ /**
24946
+ * securityGroupEgressProvideDefaults sets the appropriate defaults for SecurityGroupEgress
24947
+ */
24948
+ function securityGroupEgressProvideDefaults(val: SecurityGroupEgress): SecurityGroupEgress;
24865
24949
  interface SecurityGroupIngress {
24866
24950
  /**
24867
24951
  * List of CIDR blocks.
@@ -24904,6 +24988,10 @@ export declare namespace ec2 {
24904
24988
  */
24905
24989
  toPort: pulumi.Input<number>;
24906
24990
  }
24991
+ /**
24992
+ * securityGroupIngressProvideDefaults sets the appropriate defaults for SecurityGroupIngress
24993
+ */
24994
+ function securityGroupIngressProvideDefaults(val: SecurityGroupIngress): SecurityGroupIngress;
24907
24995
  interface SpotFleetRequestLaunchSpecification {
24908
24996
  ami: pulumi.Input<string>;
24909
24997
  associatePublicIpAddress?: pulumi.Input<boolean>;
@@ -38942,6 +39030,9 @@ export declare namespace lakeformation {
38942
39030
  * Name of the table.
38943
39031
  */
38944
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
+ */
38945
39036
  wildcard?: pulumi.Input<boolean>;
38946
39037
  }
38947
39038
  interface OptInResourceDataTableWithColumns {
@@ -56782,7 +56873,7 @@ export declare namespace networkfirewall {
56782
56873
  }
56783
56874
  interface FirewallSubnetMapping {
56784
56875
  /**
56785
- * The subnet's IP address type. Valida values: `"DUALSTACK"`, `"IPV4"`.
56876
+ * The subnet's IP address type. Valid values: `"DUALSTACK"`, `"IPV4"`.
56786
56877
  */
56787
56878
  ipAddressType?: pulumi.Input<string>;
56788
56879
  /**
@@ -62666,6 +62757,20 @@ export declare namespace redshift {
62666
62757
  */
62667
62758
  producerArn?: pulumi.Input<string>;
62668
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
+ }
62669
62774
  interface ParameterGroupParameter {
62670
62775
  /**
62671
62776
  * The name of the Redshift parameter.
@@ -62820,6 +62925,16 @@ export declare namespace redshiftserverless {
62820
62925
  */
62821
62926
  subnetId?: pulumi.Input<string>;
62822
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
+ }
62823
62938
  }
62824
62939
  export declare namespace rekognition {
62825
62940
  interface CollectionTimeouts {
@@ -64860,7 +64975,9 @@ export declare namespace s3 {
64860
64975
  */
64861
64976
  prefix?: pulumi.Input<string>;
64862
64977
  /**
64863
- * 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.
64864
64981
  */
64865
64982
  tags?: pulumi.Input<{
64866
64983
  [key: string]: pulumi.Input<string>;
@@ -76668,7 +76785,7 @@ export declare namespace wafv2 {
76668
76785
  */
76669
76786
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa3Fingerprint>;
76670
76787
  /**
76671
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
76788
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
76672
76789
  */
76673
76790
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa4Fingerprint>;
76674
76791
  /**
@@ -77196,7 +77313,7 @@ export declare namespace wafv2 {
77196
77313
  */
77197
77314
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa3Fingerprint>;
77198
77315
  /**
77199
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77316
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77200
77317
  */
77201
77318
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa4Fingerprint>;
77202
77319
  /**
@@ -77464,7 +77581,7 @@ export declare namespace wafv2 {
77464
77581
  */
77465
77582
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa3Fingerprint>;
77466
77583
  /**
77467
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77584
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77468
77585
  */
77469
77586
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa4Fingerprint>;
77470
77587
  /**
@@ -77666,7 +77783,7 @@ export declare namespace wafv2 {
77666
77783
  */
77667
77784
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint>;
77668
77785
  /**
77669
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77786
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77670
77787
  */
77671
77788
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint>;
77672
77789
  /**
@@ -77872,7 +77989,7 @@ export declare namespace wafv2 {
77872
77989
  */
77873
77990
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa3Fingerprint>;
77874
77991
  /**
77875
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
77992
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
77876
77993
  */
77877
77994
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa4Fingerprint>;
77878
77995
  /**
@@ -78074,7 +78191,7 @@ export declare namespace wafv2 {
78074
78191
  */
78075
78192
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa3Fingerprint>;
78076
78193
  /**
78077
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78194
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78078
78195
  */
78079
78196
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa4Fingerprint>;
78080
78197
  /**
@@ -78272,7 +78389,7 @@ export declare namespace wafv2 {
78272
78389
  */
78273
78390
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa3Fingerprint>;
78274
78391
  /**
78275
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78392
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78276
78393
  */
78277
78394
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa4Fingerprint>;
78278
78395
  /**
@@ -78474,7 +78591,7 @@ export declare namespace wafv2 {
78474
78591
  */
78475
78592
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa3Fingerprint>;
78476
78593
  /**
78477
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78594
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78478
78595
  */
78479
78596
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa4Fingerprint>;
78480
78597
  /**
@@ -78676,7 +78793,7 @@ export declare namespace wafv2 {
78676
78793
  */
78677
78794
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint>;
78678
78795
  /**
78679
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
78796
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78680
78797
  */
78681
78798
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint>;
78682
78799
  /**
@@ -78882,7 +78999,7 @@ export declare namespace wafv2 {
78882
78999
  */
78883
79000
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa3Fingerprint>;
78884
79001
  /**
78885
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79002
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
78886
79003
  */
78887
79004
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa4Fingerprint>;
78888
79005
  /**
@@ -79084,7 +79201,7 @@ export declare namespace wafv2 {
79084
79201
  */
79085
79202
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa3Fingerprint>;
79086
79203
  /**
79087
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79204
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
79088
79205
  */
79089
79206
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa4Fingerprint>;
79090
79207
  /**
@@ -79282,7 +79399,7 @@ export declare namespace wafv2 {
79282
79399
  */
79283
79400
  ja3Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa3Fingerprint>;
79284
79401
  /**
79285
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
79402
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
79286
79403
  */
79287
79404
  ja4Fingerprint?: pulumi.Input<inputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa4Fingerprint>;
79288
79405
  /**
package/types/input.js CHANGED
@@ -2,7 +2,26 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.rds = void 0;
5
+ exports.rds = exports.ec2 = void 0;
6
+ var ec2;
7
+ (function (ec2) {
8
+ /**
9
+ * securityGroupEgressProvideDefaults sets the appropriate defaults for SecurityGroupEgress
10
+ */
11
+ function securityGroupEgressProvideDefaults(val) {
12
+ var _a;
13
+ return Object.assign(Object.assign({}, val), { description: (_a = (val.description)) !== null && _a !== void 0 ? _a : "" });
14
+ }
15
+ ec2.securityGroupEgressProvideDefaults = securityGroupEgressProvideDefaults;
16
+ /**
17
+ * securityGroupIngressProvideDefaults sets the appropriate defaults for SecurityGroupIngress
18
+ */
19
+ function securityGroupIngressProvideDefaults(val) {
20
+ var _a;
21
+ return Object.assign(Object.assign({}, val), { description: (_a = (val.description)) !== null && _a !== void 0 ? _a : "" });
22
+ }
23
+ ec2.securityGroupIngressProvideDefaults = securityGroupIngressProvideDefaults;
24
+ })(ec2 = exports.ec2 || (exports.ec2 = {}));
6
25
  var rds;
7
26
  (function (rds) {
8
27
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAk/hEjF,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
  /**
@@ -30348,7 +30456,7 @@ export declare namespace ec2 {
30348
30456
  /**
30349
30457
  * Description of this egress rule.
30350
30458
  */
30351
- description?: string;
30459
+ description: string;
30352
30460
  /**
30353
30461
  * Start port (or ICMP type number if protocol is `icmp`)
30354
30462
  */
@@ -30382,6 +30490,10 @@ export declare namespace ec2 {
30382
30490
  */
30383
30491
  toPort: number;
30384
30492
  }
30493
+ /**
30494
+ * securityGroupEgressProvideDefaults sets the appropriate defaults for SecurityGroupEgress
30495
+ */
30496
+ function securityGroupEgressProvideDefaults(val: SecurityGroupEgress): SecurityGroupEgress;
30385
30497
  interface SecurityGroupIngress {
30386
30498
  /**
30387
30499
  * List of CIDR blocks.
@@ -30390,7 +30502,7 @@ export declare namespace ec2 {
30390
30502
  /**
30391
30503
  * Description of this ingress rule.
30392
30504
  */
30393
- description?: string;
30505
+ description: string;
30394
30506
  /**
30395
30507
  * Start port (or ICMP type number if protocol is `icmp` or `icmpv6`).
30396
30508
  */
@@ -30424,6 +30536,10 @@ export declare namespace ec2 {
30424
30536
  */
30425
30537
  toPort: number;
30426
30538
  }
30539
+ /**
30540
+ * securityGroupIngressProvideDefaults sets the appropriate defaults for SecurityGroupIngress
30541
+ */
30542
+ function securityGroupIngressProvideDefaults(val: SecurityGroupIngress): SecurityGroupIngress;
30427
30543
  interface SpotFleetRequestLaunchSpecification {
30428
30544
  ami: string;
30429
30545
  associatePublicIpAddress?: boolean;
@@ -46055,6 +46171,9 @@ export declare namespace lakeformation {
46055
46171
  * Name of the table.
46056
46172
  */
46057
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
+ */
46058
46177
  wildcard?: boolean;
46059
46178
  }
46060
46179
  interface OptInResourceDataTableWithColumns {
@@ -64161,7 +64280,7 @@ export declare namespace networkfirewall {
64161
64280
  }
64162
64281
  interface FirewallSubnetMapping {
64163
64282
  /**
64164
- * The subnet's IP address type. Valida values: `"DUALSTACK"`, `"IPV4"`.
64283
+ * The subnet's IP address type. Valid values: `"DUALSTACK"`, `"IPV4"`.
64165
64284
  */
64166
64285
  ipAddressType: string;
64167
64286
  /**
@@ -70676,6 +70795,20 @@ export declare namespace redshift {
70676
70795
  */
70677
70796
  producerArn: string;
70678
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
+ }
70679
70812
  interface ParameterGroupParameter {
70680
70813
  /**
70681
70814
  * The name of the Redshift parameter.
@@ -70876,6 +71009,16 @@ export declare namespace redshiftserverless {
70876
71009
  */
70877
71010
  subnetId: string;
70878
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
+ }
70879
71022
  }
70880
71023
  export declare namespace rekognition {
70881
71024
  interface CollectionTimeouts {
@@ -73010,7 +73153,9 @@ export declare namespace s3 {
73010
73153
  */
73011
73154
  prefix: string;
73012
73155
  /**
73013
- * 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.
73014
73159
  */
73015
73160
  tags?: {
73016
73161
  [key: string]: string;
@@ -85428,7 +85573,7 @@ export declare namespace wafv2 {
85428
85573
  */
85429
85574
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa3Fingerprint;
85430
85575
  /**
85431
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
85576
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
85432
85577
  */
85433
85578
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementByteMatchStatementFieldToMatchJa4Fingerprint;
85434
85579
  /**
@@ -85956,7 +86101,7 @@ export declare namespace wafv2 {
85956
86101
  */
85957
86102
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa3Fingerprint;
85958
86103
  /**
85959
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86104
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
85960
86105
  */
85961
86106
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementByteMatchStatementFieldToMatchJa4Fingerprint;
85962
86107
  /**
@@ -86224,7 +86369,7 @@ export declare namespace wafv2 {
86224
86369
  */
86225
86370
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa3Fingerprint;
86226
86371
  /**
86227
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86372
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86228
86373
  */
86229
86374
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexMatchStatementFieldToMatchJa4Fingerprint;
86230
86375
  /**
@@ -86426,7 +86571,7 @@ export declare namespace wafv2 {
86426
86571
  */
86427
86572
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint;
86428
86573
  /**
86429
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86574
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86430
86575
  */
86431
86576
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint;
86432
86577
  /**
@@ -86632,7 +86777,7 @@ export declare namespace wafv2 {
86632
86777
  */
86633
86778
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa3Fingerprint;
86634
86779
  /**
86635
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86780
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86636
86781
  */
86637
86782
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSizeConstraintStatementFieldToMatchJa4Fingerprint;
86638
86783
  /**
@@ -86834,7 +86979,7 @@ export declare namespace wafv2 {
86834
86979
  */
86835
86980
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa3Fingerprint;
86836
86981
  /**
86837
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
86982
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
86838
86983
  */
86839
86984
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementSqliMatchStatementFieldToMatchJa4Fingerprint;
86840
86985
  /**
@@ -87032,7 +87177,7 @@ export declare namespace wafv2 {
87032
87177
  */
87033
87178
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa3Fingerprint;
87034
87179
  /**
87035
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87180
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87036
87181
  */
87037
87182
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRateBasedStatementScopeDownStatementXssMatchStatementFieldToMatchJa4Fingerprint;
87038
87183
  /**
@@ -87234,7 +87379,7 @@ export declare namespace wafv2 {
87234
87379
  */
87235
87380
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa3Fingerprint;
87236
87381
  /**
87237
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87382
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87238
87383
  */
87239
87384
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexMatchStatementFieldToMatchJa4Fingerprint;
87240
87385
  /**
@@ -87436,7 +87581,7 @@ export declare namespace wafv2 {
87436
87581
  */
87437
87582
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa3Fingerprint;
87438
87583
  /**
87439
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87584
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87440
87585
  */
87441
87586
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementRegexPatternSetReferenceStatementFieldToMatchJa4Fingerprint;
87442
87587
  /**
@@ -87642,7 +87787,7 @@ export declare namespace wafv2 {
87642
87787
  */
87643
87788
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa3Fingerprint;
87644
87789
  /**
87645
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87790
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87646
87791
  */
87647
87792
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSizeConstraintStatementFieldToMatchJa4Fingerprint;
87648
87793
  /**
@@ -87844,7 +87989,7 @@ export declare namespace wafv2 {
87844
87989
  */
87845
87990
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa3Fingerprint;
87846
87991
  /**
87847
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
87992
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
87848
87993
  */
87849
87994
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementSqliMatchStatementFieldToMatchJa4Fingerprint;
87850
87995
  /**
@@ -88042,7 +88187,7 @@ export declare namespace wafv2 {
88042
88187
  */
88043
88188
  ja3Fingerprint?: outputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa3Fingerprint;
88044
88189
  /**
88045
- * Inspect the JA3 fingerprint. See `ja4Fingerprint` below for details.
88190
+ * Inspect the JA4 fingerprint. See `ja4Fingerprint` below for details.
88046
88191
  */
88047
88192
  ja4Fingerprint?: outputs.wafv2.RuleGroupRuleStatementXssMatchStatementFieldToMatchJa4Fingerprint;
88048
88193
  /**