@aws-cdk/aws-route53resolver-alpha 2.4.0-alpha.0 → 2.8.0-alpha.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.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.4.0",
11
+ "aws-cdk-lib": "^2.8.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -2855,7 +2855,7 @@
2855
2855
  "stability": "experimental"
2856
2856
  },
2857
2857
  "homepage": "https://github.com/aws/aws-cdk",
2858
- "jsiiVersion": "1.50.0 (build d1830a4)",
2858
+ "jsiiVersion": "1.52.1 (build 5ccc8f6)",
2859
2859
  "keywords": [
2860
2860
  "aws",
2861
2861
  "cdk",
@@ -2868,12 +2868,15 @@
2868
2868
  "compiledWithDeprecationWarnings": true,
2869
2869
  "pacmak": {
2870
2870
  "hasDefaultInterfaces": true
2871
+ },
2872
+ "rosetta": {
2873
+ "strict": true
2871
2874
  }
2872
2875
  }
2873
2876
  },
2874
2877
  "name": "@aws-cdk/aws-route53resolver-alpha",
2875
2878
  "readme": {
2876
- "markdown": "# Amazon Route53 Resolver Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## DNS Firewall\n\nWith Route 53 Resolver DNS Firewall, you can filter and regulate outbound DNS traffic for your\nvirtual private connections (VPCs). To do this, you create reusable collections of filtering rules\nin DNS Firewall rule groups and associate the rule groups to your VPC.\n\nDNS Firewall provides protection for outbound DNS requests from your VPCs. These requests route\nthrough Resolver for domain name resolution. A primary use of DNS Firewall protections is to help\nprevent DNS exfiltration of your data. DNS exfiltration can happen when a bad actor compromises\nan application instance in your VPC and then uses DNS lookup to send data out of the VPC to a domain\nthat they control. With DNS Firewall, you can monitor and control the domains that your applications\ncan query. You can deny access to the domains that you know to be bad and allow all other queries\nto pass through. Alternately, you can deny access to all domains except for the ones that you\nexplicitly trust.\n\n### Domain lists\n\nDomain lists can be created using a list of strings, a text file stored in Amazon S3 or a local\ntext file:\n\n```ts\nconst blockList = new route53resolver.FirewallDomainList(this, 'BlockList', {\n domains: route53resolver.FirewallDomains.fromList(['bad-domain.com', 'bot-domain.net']),\n});\n\nconst s3List = new route53resolver.FirewallDomainList(this, 'S3List', {\n domains: route53resolver.FirewallDomains.fromS3Url('s3://bucket/prefix/object'),\n});\n\nconst assetList = new route53resolver.FirewallDomainList(this, 'AssetList', {\n domains: route53resolver.FirewallDomains.fromAsset('/path/to/domains.txt'),\n});\n```\n\nThe file must be a text file and must contain a single domain per line.\n\nUse `FirewallDomainList.fromFirewallDomainListId()` to import an existing or [AWS managed domain list](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver-dns-firewall-managed-domain-lists.html):\n\n```ts\n// AWSManagedDomainsMalwareDomainList in us-east-1\nconst malwareList = route53resolver.FirewallDomainList.fromFirewallDomainListId(this, 'Malware', 'rslvr-fdl-2c46f2ecbfec4dcc');\n```\n\n### Rule group\n\nCreate a rule group:\n\n```ts\nnew route53resolver.FirewallRuleGroup(this, 'RuleGroup', {\n rules: [\n {\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NODATA\n action: route53resolver.FirewallRuleAction.block(),\n },\n ],\n});\n```\n\nRules can be added at construction time or using `addRule()`:\n\n```ts\nruleGroup.addRule({\n priority: 10,\n firewallDomainList: blockList,\n // block and reply with NXDOMAIN\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nxDomain()),\n});\n\nruleGroup.addRule({\n priority: 20,\n firewallDomainList: blockList,\n // block and override DNS response with a custom domain\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.override('amazon.com')),\n});\n```\n\nUse `associate()` to associate a rule group with a VPC:\n\n```ts\nruleGroup.associate({\n priority: 101,\n vpc: myVpc,\n})\n```\n"
2879
+ "markdown": "# Amazon Route53 Resolver Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## DNS Firewall\n\nWith Route 53 Resolver DNS Firewall, you can filter and regulate outbound DNS traffic for your\nvirtual private connections (VPCs). To do this, you create reusable collections of filtering rules\nin DNS Firewall rule groups and associate the rule groups to your VPC.\n\nDNS Firewall provides protection for outbound DNS requests from your VPCs. These requests route\nthrough Resolver for domain name resolution. A primary use of DNS Firewall protections is to help\nprevent DNS exfiltration of your data. DNS exfiltration can happen when a bad actor compromises\nan application instance in your VPC and then uses DNS lookup to send data out of the VPC to a domain\nthat they control. With DNS Firewall, you can monitor and control the domains that your applications\ncan query. You can deny access to the domains that you know to be bad and allow all other queries\nto pass through. Alternately, you can deny access to all domains except for the ones that you\nexplicitly trust.\n\n### Domain lists\n\nDomain lists can be created using a list of strings, a text file stored in Amazon S3 or a local\ntext file:\n\n```ts\nconst blockList = new route53resolver.FirewallDomainList(this, 'BlockList', {\n domains: route53resolver.FirewallDomains.fromList(['bad-domain.com', 'bot-domain.net']),\n});\n\nconst s3List = new route53resolver.FirewallDomainList(this, 'S3List', {\n domains: route53resolver.FirewallDomains.fromS3Url('s3://bucket/prefix/object'),\n});\n\nconst assetList = new route53resolver.FirewallDomainList(this, 'AssetList', {\n domains: route53resolver.FirewallDomains.fromAsset('/path/to/domains.txt'),\n});\n```\n\nThe file must be a text file and must contain a single domain per line.\n\nUse `FirewallDomainList.fromFirewallDomainListId()` to import an existing or [AWS managed domain list](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resolver-dns-firewall-managed-domain-lists.html):\n\n```ts\n// AWSManagedDomainsMalwareDomainList in us-east-1\nconst malwareList = route53resolver.FirewallDomainList.fromFirewallDomainListId(\n this,\n 'Malware',\n 'rslvr-fdl-2c46f2ecbfec4dcc',\n);\n```\n\n### Rule group\n\nCreate a rule group:\n\n```ts\ndeclare const myBlockList: route53resolver.FirewallDomainList;\nnew route53resolver.FirewallRuleGroup(this, 'RuleGroup', {\n rules: [\n {\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NODATA\n action: route53resolver.FirewallRuleAction.block(),\n },\n ],\n});\n```\n\nRules can be added at construction time or using `addRule()`:\n\n```ts\ndeclare const myBlockList: route53resolver.FirewallDomainList;\ndeclare const ruleGroup: route53resolver.FirewallRuleGroup;\n\nruleGroup.addRule({\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NXDOMAIN\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nxDomain()),\n});\n\nruleGroup.addRule({\n priority: 20,\n firewallDomainList: myBlockList,\n // block and override DNS response with a custom domain\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.override('amazon.com')),\n});\n```\n\nUse `associate()` to associate a rule group with a VPC:\n\n```ts\nimport * as ec2 from 'aws-cdk-lib/aws-ec2';\n\ndeclare const ruleGroup: route53resolver.FirewallRuleGroup;\ndeclare const myVpc: ec2.Vpc;\n\nruleGroup.associate('Association', {\n priority: 101,\n vpc: myVpc,\n})\n```\n"
2877
2880
  },
2878
2881
  "repository": {
2879
2882
  "directory": "packages/individual-packages/aws-route53resolver",
@@ -2915,12 +2918,12 @@
2915
2918
  "abstract": true,
2916
2919
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
2917
2920
  "docs": {
2918
- "stability": "experimental",
2919
- "summary": "The way that you want DNS Firewall to block the request.",
2920
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\nconst dnsBlockResponse = route53resolver_alpha.DnsBlockResponse.noData();",
2921
2921
  "custom": {
2922
- "exampleMetadata": "fixture=_generated"
2923
- }
2922
+ "exampleMetadata": "infused"
2923
+ },
2924
+ "example": "declare const myBlockList: route53resolver.FirewallDomainList;\ndeclare const ruleGroup: route53resolver.FirewallRuleGroup;\n\nruleGroup.addRule({\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NXDOMAIN\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nxDomain()),\n});\n\nruleGroup.addRule({\n priority: 20,\n firewallDomainList: myBlockList,\n // block and override DNS response with a custom domain\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.override('amazon.com')),\n});",
2925
+ "stability": "experimental",
2926
+ "summary": "The way that you want DNS Firewall to block the request."
2924
2927
  },
2925
2928
  "fqn": "@aws-cdk/aws-route53resolver-alpha.DnsBlockResponse",
2926
2929
  "initializer": {
@@ -3148,12 +3151,12 @@
3148
3151
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3149
3152
  "base": "aws-cdk-lib.Resource",
3150
3153
  "docs": {
3151
- "stability": "experimental",
3152
- "summary": "A Firewall Domain List.",
3153
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\n\ndeclare const firewallDomains: route53resolver_alpha.FirewallDomains;\nconst firewallDomainList = new route53resolver_alpha.FirewallDomainList(this, 'MyFirewallDomainList', {\n domains: firewallDomains,\n\n // the properties below are optional\n name: 'name',\n});",
3154
3154
  "custom": {
3155
- "exampleMetadata": "fixture=_generated"
3156
- }
3155
+ "exampleMetadata": "infused"
3156
+ },
3157
+ "example": "const blockList = new route53resolver.FirewallDomainList(this, 'BlockList', {\n domains: route53resolver.FirewallDomains.fromList(['bad-domain.com', 'bot-domain.net']),\n});\n\nconst s3List = new route53resolver.FirewallDomainList(this, 'S3List', {\n domains: route53resolver.FirewallDomains.fromS3Url('s3://bucket/prefix/object'),\n});\n\nconst assetList = new route53resolver.FirewallDomainList(this, 'AssetList', {\n domains: route53resolver.FirewallDomains.fromAsset('/path/to/domains.txt'),\n});",
3158
+ "stability": "experimental",
3159
+ "summary": "A Firewall Domain List."
3157
3160
  },
3158
3161
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomainList",
3159
3162
  "initializer": {
@@ -3402,12 +3405,12 @@
3402
3405
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3403
3406
  "datatype": true,
3404
3407
  "docs": {
3405
- "stability": "experimental",
3406
- "summary": "Properties for a Firewall Domain List.",
3407
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\n\ndeclare const firewallDomains: route53resolver_alpha.FirewallDomains;\nconst firewallDomainListProps: route53resolver_alpha.FirewallDomainListProps = {\n domains: firewallDomains,\n\n // the properties below are optional\n name: 'name',\n};",
3408
3408
  "custom": {
3409
- "exampleMetadata": "fixture=_generated"
3410
- }
3409
+ "exampleMetadata": "infused"
3410
+ },
3411
+ "example": "const blockList = new route53resolver.FirewallDomainList(this, 'BlockList', {\n domains: route53resolver.FirewallDomains.fromList(['bad-domain.com', 'bot-domain.net']),\n});\n\nconst s3List = new route53resolver.FirewallDomainList(this, 'S3List', {\n domains: route53resolver.FirewallDomains.fromS3Url('s3://bucket/prefix/object'),\n});\n\nconst assetList = new route53resolver.FirewallDomainList(this, 'AssetList', {\n domains: route53resolver.FirewallDomains.fromAsset('/path/to/domains.txt'),\n});",
3412
+ "stability": "experimental",
3413
+ "summary": "Properties for a Firewall Domain List."
3411
3414
  },
3412
3415
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomainListProps",
3413
3416
  "kind": "interface",
@@ -3458,12 +3461,12 @@
3458
3461
  "abstract": true,
3459
3462
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3460
3463
  "docs": {
3461
- "stability": "experimental",
3462
- "summary": "A list of domains.",
3463
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\nconst firewallDomains = route53resolver_alpha.FirewallDomains.fromAsset('assetPath');",
3464
3464
  "custom": {
3465
- "exampleMetadata": "fixture=_generated"
3466
- }
3465
+ "exampleMetadata": "infused"
3466
+ },
3467
+ "example": "const blockList = new route53resolver.FirewallDomainList(this, 'BlockList', {\n domains: route53resolver.FirewallDomains.fromList(['bad-domain.com', 'bot-domain.net']),\n});\n\nconst s3List = new route53resolver.FirewallDomainList(this, 'S3List', {\n domains: route53resolver.FirewallDomains.fromS3Url('s3://bucket/prefix/object'),\n});\n\nconst assetList = new route53resolver.FirewallDomainList(this, 'AssetList', {\n domains: route53resolver.FirewallDomains.fromAsset('/path/to/domains.txt'),\n});",
3468
+ "stability": "experimental",
3469
+ "summary": "A list of domains."
3467
3470
  },
3468
3471
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomains",
3469
3472
  "initializer": {
@@ -3639,12 +3642,12 @@
3639
3642
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3640
3643
  "datatype": true,
3641
3644
  "docs": {
3642
- "stability": "experimental",
3643
- "summary": "A Firewall Rule.",
3644
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\n\ndeclare const firewallDomainList: route53resolver_alpha.FirewallDomainList;\ndeclare const firewallRuleAction: route53resolver_alpha.FirewallRuleAction;\nconst firewallRule: route53resolver_alpha.FirewallRule = {\n action: firewallRuleAction,\n firewallDomainList: firewallDomainList,\n priority: 123,\n};",
3645
3645
  "custom": {
3646
- "exampleMetadata": "fixture=_generated"
3647
- }
3646
+ "exampleMetadata": "infused"
3647
+ },
3648
+ "example": "declare const myBlockList: route53resolver.FirewallDomainList;\ndeclare const ruleGroup: route53resolver.FirewallRuleGroup;\n\nruleGroup.addRule({\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NXDOMAIN\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nxDomain()),\n});\n\nruleGroup.addRule({\n priority: 20,\n firewallDomainList: myBlockList,\n // block and override DNS response with a custom domain\n action: route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.override('amazon.com')),\n});",
3649
+ "stability": "experimental",
3650
+ "summary": "A Firewall Rule."
3648
3651
  },
3649
3652
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRule",
3650
3653
  "kind": "interface",
@@ -3710,12 +3713,12 @@
3710
3713
  "abstract": true,
3711
3714
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3712
3715
  "docs": {
3713
- "stability": "experimental",
3714
- "summary": "A Firewall Rule.",
3715
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\nconst firewallRuleAction = route53resolver_alpha.FirewallRuleAction.alert();",
3716
3716
  "custom": {
3717
- "exampleMetadata": "fixture=_generated"
3718
- }
3717
+ "exampleMetadata": "infused"
3718
+ },
3719
+ "example": "declare const myBlockList: route53resolver.FirewallDomainList;\nnew route53resolver.FirewallRuleGroup(this, 'RuleGroup', {\n rules: [\n {\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NODATA\n action: route53resolver.FirewallRuleAction.block(),\n },\n ],\n});",
3720
+ "stability": "experimental",
3721
+ "summary": "A Firewall Rule."
3719
3722
  },
3720
3723
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction",
3721
3724
  "initializer": {
@@ -3835,12 +3838,12 @@
3835
3838
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
3836
3839
  "base": "aws-cdk-lib.Resource",
3837
3840
  "docs": {
3838
- "stability": "experimental",
3839
- "summary": "A Firewall Rule Group.",
3840
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\n\ndeclare const firewallDomainList: route53resolver_alpha.FirewallDomainList;\ndeclare const firewallRuleAction: route53resolver_alpha.FirewallRuleAction;\nconst firewallRuleGroup = new route53resolver_alpha.FirewallRuleGroup(this, 'MyFirewallRuleGroup', /* all optional props */ {\n name: 'name',\n rules: [{\n action: firewallRuleAction,\n firewallDomainList: firewallDomainList,\n priority: 123,\n }],\n});",
3841
3841
  "custom": {
3842
- "exampleMetadata": "fixture=_generated"
3843
- }
3842
+ "exampleMetadata": "infused"
3843
+ },
3844
+ "example": "declare const myBlockList: route53resolver.FirewallDomainList;\nnew route53resolver.FirewallRuleGroup(this, 'RuleGroup', {\n rules: [\n {\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NODATA\n action: route53resolver.FirewallRuleAction.block(),\n },\n ],\n});",
3845
+ "stability": "experimental",
3846
+ "summary": "A Firewall Rule Group."
3844
3847
  },
3845
3848
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroup",
3846
3849
  "initializer": {
@@ -4357,12 +4360,12 @@
4357
4360
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
4358
4361
  "datatype": true,
4359
4362
  "docs": {
4360
- "stability": "experimental",
4361
- "summary": "Options for a Firewall Rule Group Association.",
4362
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\nimport { aws_ec2 as ec2 } from 'aws-cdk-lib';\n\ndeclare const vpc: ec2.Vpc;\nconst firewallRuleGroupAssociationOptions: route53resolver_alpha.FirewallRuleGroupAssociationOptions = {\n priority: 123,\n vpc: vpc,\n\n // the properties below are optional\n mutationProtection: false,\n name: 'name',\n};",
4363
4363
  "custom": {
4364
- "exampleMetadata": "fixture=_generated"
4365
- }
4364
+ "exampleMetadata": "infused"
4365
+ },
4366
+ "example": "import * as ec2 from 'aws-cdk-lib/aws-ec2';\n\ndeclare const ruleGroup: route53resolver.FirewallRuleGroup;\ndeclare const myVpc: ec2.Vpc;\n\nruleGroup.associate('Association', {\n priority: 101,\n vpc: myVpc,\n})",
4367
+ "stability": "experimental",
4368
+ "summary": "Options for a Firewall Rule Group Association."
4366
4369
  },
4367
4370
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationOptions",
4368
4371
  "kind": "interface",
@@ -4489,12 +4492,12 @@
4489
4492
  "assembly": "@aws-cdk/aws-route53resolver-alpha",
4490
4493
  "datatype": true,
4491
4494
  "docs": {
4492
- "stability": "experimental",
4493
- "summary": "Properties for a Firewall Rule Group.",
4494
- "example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as route53resolver_alpha from '@aws-cdk/aws-route53resolver-alpha';\n\ndeclare const firewallDomainList: route53resolver_alpha.FirewallDomainList;\ndeclare const firewallRuleAction: route53resolver_alpha.FirewallRuleAction;\nconst firewallRuleGroupProps: route53resolver_alpha.FirewallRuleGroupProps = {\n name: 'name',\n rules: [{\n action: firewallRuleAction,\n firewallDomainList: firewallDomainList,\n priority: 123,\n }],\n};",
4495
4495
  "custom": {
4496
- "exampleMetadata": "fixture=_generated"
4497
- }
4496
+ "exampleMetadata": "infused"
4497
+ },
4498
+ "example": "declare const myBlockList: route53resolver.FirewallDomainList;\nnew route53resolver.FirewallRuleGroup(this, 'RuleGroup', {\n rules: [\n {\n priority: 10,\n firewallDomainList: myBlockList,\n // block and reply with NODATA\n action: route53resolver.FirewallRuleAction.block(),\n },\n ],\n});",
4499
+ "stability": "experimental",
4500
+ "summary": "Properties for a Firewall Rule Group."
4498
4501
  },
4499
4502
  "fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupProps",
4500
4503
  "kind": "interface",
@@ -4627,6 +4630,6 @@
4627
4630
  "symbolId": "lib/firewall-rule-group:IFirewallRuleGroup"
4628
4631
  }
4629
4632
  },
4630
- "version": "2.4.0-alpha.0",
4633
+ "version": "2.8.0-alpha.0",
4631
4634
  "fingerprint": "**********"
4632
4635
  }