@aws-cdk/aws-route53resolver-alpha 2.1.0-alpha.0 → 2.5.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 +172 -94
- package/.jsii.tabl.json +885 -0
- package/LICENSE +1 -1
- package/NOTICE +1 -1
- package/lib/firewall-domain-list.js +2 -2
- package/lib/firewall-rule-group-association.js +1 -1
- package/lib/firewall-rule-group.js +3 -3
- package/lib/route53resolver-canned-metrics.generated.js +2 -2
- package/package.json +7 -7
package/.jsii.tabl.json
ADDED
|
@@ -0,0 +1,885 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2",
|
|
3
|
+
"toolVersion": "1.50.0",
|
|
4
|
+
"snippets": {
|
|
5
|
+
"d9d20fb2cd4f9edf6f596ff6f54acd6ff014b4b6eebbc1cec92e5d1801f32328": {
|
|
6
|
+
"translations": {
|
|
7
|
+
"python": {
|
|
8
|
+
"source": "block_list = route53resolver.FirewallDomainList(self, \"BlockList\",\n domains=route53resolver.FirewallDomains.from_list([\"bad-domain.com\", \"bot-domain.net\"])\n)\n\ns3_list = route53resolver.FirewallDomainList(self, \"S3List\",\n domains=route53resolver.FirewallDomains.from_s3_url(\"s3://bucket/prefix/object\")\n)\n\nasset_list = route53resolver.FirewallDomainList(self, \"AssetList\",\n domains=route53resolver.FirewallDomains.from_asset(\"/path/to/domains.txt\")\n)",
|
|
9
|
+
"version": "1"
|
|
10
|
+
},
|
|
11
|
+
"csharp": {
|
|
12
|
+
"source": "var blockList = new route53resolver.FirewallDomainList(this, \"BlockList\", new Struct {\n Domains = route53resolver.FirewallDomains.FromList(new [] { \"bad-domain.com\", \"bot-domain.net\" })\n});\n\nvar s3List = new route53resolver.FirewallDomainList(this, \"S3List\", new Struct {\n Domains = route53resolver.FirewallDomains.FromS3Url(\"s3://bucket/prefix/object\")\n});\n\nvar assetList = new route53resolver.FirewallDomainList(this, \"AssetList\", new Struct {\n Domains = route53resolver.FirewallDomains.FromAsset(\"/path/to/domains.txt\")\n});",
|
|
13
|
+
"version": "1"
|
|
14
|
+
},
|
|
15
|
+
"java": {
|
|
16
|
+
"source": "Object blockList = FirewallDomainList.Builder.create(this, \"BlockList\")\n .domains(route53resolver.FirewallDomains.fromList(List.of(\"bad-domain.com\", \"bot-domain.net\")))\n .build();\n\nObject s3List = FirewallDomainList.Builder.create(this, \"S3List\")\n .domains(route53resolver.FirewallDomains.fromS3Url(\"s3://bucket/prefix/object\"))\n .build();\n\nObject assetList = FirewallDomainList.Builder.create(this, \"AssetList\")\n .domains(route53resolver.FirewallDomains.fromAsset(\"/path/to/domains.txt\"))\n .build();",
|
|
17
|
+
"version": "1"
|
|
18
|
+
},
|
|
19
|
+
"$": {
|
|
20
|
+
"source": "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});",
|
|
21
|
+
"version": "0"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"location": {
|
|
25
|
+
"api": {
|
|
26
|
+
"api": "moduleReadme",
|
|
27
|
+
"moduleFqn": "@aws-cdk/aws-route53resolver-alpha"
|
|
28
|
+
},
|
|
29
|
+
"field": {
|
|
30
|
+
"field": "markdown",
|
|
31
|
+
"line": 38
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"didCompile": false,
|
|
35
|
+
"fqnsReferenced": [],
|
|
36
|
+
"fullSource": "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});",
|
|
37
|
+
"syntaxKindCounter": {
|
|
38
|
+
"10": 7,
|
|
39
|
+
"75": 21,
|
|
40
|
+
"104": 3,
|
|
41
|
+
"192": 1,
|
|
42
|
+
"193": 3,
|
|
43
|
+
"194": 9,
|
|
44
|
+
"196": 3,
|
|
45
|
+
"197": 3,
|
|
46
|
+
"225": 3,
|
|
47
|
+
"242": 3,
|
|
48
|
+
"243": 3,
|
|
49
|
+
"281": 3,
|
|
50
|
+
"290": 1
|
|
51
|
+
},
|
|
52
|
+
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
53
|
+
},
|
|
54
|
+
"7c1aaa1170f71dd56fbbf709e6578e5ed7610e3836931efa7bdbd943914410e9": {
|
|
55
|
+
"translations": {
|
|
56
|
+
"python": {
|
|
57
|
+
"source": "# AWSManagedDomainsMalwareDomainList in us-east-1\nmalware_list = route53resolver.FirewallDomainList.from_firewall_domain_list_id(self, \"Malware\", \"rslvr-fdl-2c46f2ecbfec4dcc\")",
|
|
58
|
+
"version": "1"
|
|
59
|
+
},
|
|
60
|
+
"csharp": {
|
|
61
|
+
"source": "// AWSManagedDomainsMalwareDomainList in us-east-1\nvar malwareList = route53resolver.FirewallDomainList.FromFirewallDomainListId(this, \"Malware\", \"rslvr-fdl-2c46f2ecbfec4dcc\");",
|
|
62
|
+
"version": "1"
|
|
63
|
+
},
|
|
64
|
+
"java": {
|
|
65
|
+
"source": "// AWSManagedDomainsMalwareDomainList in us-east-1\nObject malwareList = route53resolver.FirewallDomainList.fromFirewallDomainListId(this, \"Malware\", \"rslvr-fdl-2c46f2ecbfec4dcc\");",
|
|
66
|
+
"version": "1"
|
|
67
|
+
},
|
|
68
|
+
"$": {
|
|
69
|
+
"source": "// AWSManagedDomainsMalwareDomainList in us-east-1\nconst malwareList = route53resolver.FirewallDomainList.fromFirewallDomainListId(this, 'Malware', 'rslvr-fdl-2c46f2ecbfec4dcc');",
|
|
70
|
+
"version": "0"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"location": {
|
|
74
|
+
"api": {
|
|
75
|
+
"api": "moduleReadme",
|
|
76
|
+
"moduleFqn": "@aws-cdk/aws-route53resolver-alpha"
|
|
77
|
+
},
|
|
78
|
+
"field": {
|
|
79
|
+
"field": "markdown",
|
|
80
|
+
"line": 56
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"didCompile": false,
|
|
84
|
+
"fqnsReferenced": [],
|
|
85
|
+
"fullSource": "// AWSManagedDomainsMalwareDomainList in us-east-1\nconst malwareList = route53resolver.FirewallDomainList.fromFirewallDomainListId(this, 'Malware', 'rslvr-fdl-2c46f2ecbfec4dcc');",
|
|
86
|
+
"syntaxKindCounter": {
|
|
87
|
+
"10": 2,
|
|
88
|
+
"75": 4,
|
|
89
|
+
"104": 1,
|
|
90
|
+
"194": 2,
|
|
91
|
+
"196": 1,
|
|
92
|
+
"225": 1,
|
|
93
|
+
"242": 1,
|
|
94
|
+
"243": 1,
|
|
95
|
+
"290": 1
|
|
96
|
+
},
|
|
97
|
+
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
98
|
+
},
|
|
99
|
+
"8c9d00cc8f99f775f9a1d8346378c8ed770bf0470b35fe94964d4cf409220c70": {
|
|
100
|
+
"translations": {
|
|
101
|
+
"python": {
|
|
102
|
+
"source": "route53resolver.FirewallRuleGroup(self, \"RuleGroup\",\n rules=[{\n \"priority\": 10,\n \"firewall_domain_list\": my_block_list,\n # block and reply with NODATA\n \"action\": route53resolver.FirewallRuleAction.block()\n }\n ]\n)",
|
|
103
|
+
"version": "1"
|
|
104
|
+
},
|
|
105
|
+
"csharp": {
|
|
106
|
+
"source": "new route53resolver.FirewallRuleGroup(this, \"RuleGroup\", new Struct {\n Rules = new [] { new Struct {\n Priority = 10,\n FirewallDomainList = myBlockList,\n // block and reply with NODATA\n Action = route53resolver.FirewallRuleAction.Block()\n } }\n});",
|
|
107
|
+
"version": "1"
|
|
108
|
+
},
|
|
109
|
+
"java": {
|
|
110
|
+
"source": "FirewallRuleGroup.Builder.create(this, \"RuleGroup\")\n .rules(List.of(Map.of(\n \"priority\", 10,\n \"firewallDomainList\", myBlockList,\n // block and reply with NODATA\n \"action\", route53resolver.FirewallRuleAction.block())))\n .build();",
|
|
111
|
+
"version": "1"
|
|
112
|
+
},
|
|
113
|
+
"$": {
|
|
114
|
+
"source": "new 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});",
|
|
115
|
+
"version": "0"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"location": {
|
|
119
|
+
"api": {
|
|
120
|
+
"api": "moduleReadme",
|
|
121
|
+
"moduleFqn": "@aws-cdk/aws-route53resolver-alpha"
|
|
122
|
+
},
|
|
123
|
+
"field": {
|
|
124
|
+
"field": "markdown",
|
|
125
|
+
"line": 65
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"didCompile": false,
|
|
129
|
+
"fqnsReferenced": [],
|
|
130
|
+
"fullSource": "new 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});",
|
|
131
|
+
"syntaxKindCounter": {
|
|
132
|
+
"8": 1,
|
|
133
|
+
"10": 1,
|
|
134
|
+
"75": 10,
|
|
135
|
+
"104": 1,
|
|
136
|
+
"192": 1,
|
|
137
|
+
"193": 2,
|
|
138
|
+
"194": 3,
|
|
139
|
+
"196": 1,
|
|
140
|
+
"197": 1,
|
|
141
|
+
"226": 1,
|
|
142
|
+
"281": 4,
|
|
143
|
+
"290": 1
|
|
144
|
+
},
|
|
145
|
+
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
146
|
+
},
|
|
147
|
+
"7284a05c4664718f2d1c622a424f324871c72c65ffa612ffd39dae46510f4e7e": {
|
|
148
|
+
"translations": {
|
|
149
|
+
"python": {
|
|
150
|
+
"source": "rule_group.add_rule(\n priority=10,\n firewall_domain_list=block_list,\n # block and reply with NXDOMAIN\n action=route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nx_domain())\n)\n\nrule_group.add_rule(\n priority=20,\n firewall_domain_list=block_list,\n # block and override DNS response with a custom domain\n action=route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.override(\"amazon.com\"))\n)",
|
|
151
|
+
"version": "1"
|
|
152
|
+
},
|
|
153
|
+
"csharp": {
|
|
154
|
+
"source": "ruleGroup.AddRule(new Struct {\n Priority = 10,\n FirewallDomainList = blockList,\n // block and reply with NXDOMAIN\n Action = route53resolver.FirewallRuleAction.Block(route53resolver.DnsBlockResponse.NxDomain())\n});\n\nruleGroup.AddRule(new Struct {\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});",
|
|
155
|
+
"version": "1"
|
|
156
|
+
},
|
|
157
|
+
"java": {
|
|
158
|
+
"source": "ruleGroup.addRule(Map.of(\n \"priority\", 10,\n \"firewallDomainList\", blockList,\n // block and reply with NXDOMAIN\n \"action\", route53resolver.FirewallRuleAction.block(route53resolver.DnsBlockResponse.nxDomain())));\n\nruleGroup.addRule(Map.of(\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\"))));",
|
|
159
|
+
"version": "1"
|
|
160
|
+
},
|
|
161
|
+
"$": {
|
|
162
|
+
"source": "ruleGroup.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});",
|
|
163
|
+
"version": "0"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"location": {
|
|
167
|
+
"api": {
|
|
168
|
+
"api": "moduleReadme",
|
|
169
|
+
"moduleFqn": "@aws-cdk/aws-route53resolver-alpha"
|
|
170
|
+
},
|
|
171
|
+
"field": {
|
|
172
|
+
"field": "markdown",
|
|
173
|
+
"line": 80
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"didCompile": false,
|
|
177
|
+
"fqnsReferenced": [],
|
|
178
|
+
"fullSource": "ruleGroup.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});",
|
|
179
|
+
"syntaxKindCounter": {
|
|
180
|
+
"8": 2,
|
|
181
|
+
"10": 1,
|
|
182
|
+
"75": 24,
|
|
183
|
+
"193": 2,
|
|
184
|
+
"194": 10,
|
|
185
|
+
"196": 6,
|
|
186
|
+
"226": 2,
|
|
187
|
+
"281": 6,
|
|
188
|
+
"290": 1
|
|
189
|
+
},
|
|
190
|
+
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
191
|
+
},
|
|
192
|
+
"2f552f622a0c5c7f82d141838261188d965185a5266d272bf330d5a56b500782": {
|
|
193
|
+
"translations": {
|
|
194
|
+
"python": {
|
|
195
|
+
"source": "rule_group.associate(\n priority=101,\n vpc=my_vpc\n)",
|
|
196
|
+
"version": "1"
|
|
197
|
+
},
|
|
198
|
+
"csharp": {
|
|
199
|
+
"source": "ruleGroup.Associate(new Struct {\n Priority = 101,\n Vpc = myVpc\n});",
|
|
200
|
+
"version": "1"
|
|
201
|
+
},
|
|
202
|
+
"java": {
|
|
203
|
+
"source": "ruleGroup.associate(Map.of(\n \"priority\", 101,\n \"vpc\", myVpc));",
|
|
204
|
+
"version": "1"
|
|
205
|
+
},
|
|
206
|
+
"$": {
|
|
207
|
+
"source": "ruleGroup.associate({\n priority: 101,\n vpc: myVpc,\n})",
|
|
208
|
+
"version": "0"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"location": {
|
|
212
|
+
"api": {
|
|
213
|
+
"api": "moduleReadme",
|
|
214
|
+
"moduleFqn": "@aws-cdk/aws-route53resolver-alpha"
|
|
215
|
+
},
|
|
216
|
+
"field": {
|
|
217
|
+
"field": "markdown",
|
|
218
|
+
"line": 98
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"didCompile": false,
|
|
222
|
+
"fqnsReferenced": [],
|
|
223
|
+
"fullSource": "ruleGroup.associate({\n priority: 101,\n vpc: myVpc,\n})",
|
|
224
|
+
"syntaxKindCounter": {
|
|
225
|
+
"8": 1,
|
|
226
|
+
"75": 5,
|
|
227
|
+
"193": 1,
|
|
228
|
+
"194": 1,
|
|
229
|
+
"196": 1,
|
|
230
|
+
"226": 1,
|
|
231
|
+
"281": 2,
|
|
232
|
+
"290": 1
|
|
233
|
+
},
|
|
234
|
+
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
235
|
+
},
|
|
236
|
+
"df448dde5e78d5bda8527ba4a4ce4645280e90c05af4729197ec9fa75c5605e0": {
|
|
237
|
+
"translations": {
|
|
238
|
+
"python": {
|
|
239
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\ndns_block_response = route53resolver_alpha.DnsBlockResponse.no_data()",
|
|
240
|
+
"version": "1"
|
|
241
|
+
},
|
|
242
|
+
"csharp": {
|
|
243
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nDnsBlockResponse dnsBlockResponse = DnsBlockResponse.NoData();",
|
|
244
|
+
"version": "1"
|
|
245
|
+
},
|
|
246
|
+
"java": {
|
|
247
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nDnsBlockResponse dnsBlockResponse = DnsBlockResponse.noData();",
|
|
248
|
+
"version": "1"
|
|
249
|
+
},
|
|
250
|
+
"$": {
|
|
251
|
+
"source": "// 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();",
|
|
252
|
+
"version": "0"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
"location": {
|
|
256
|
+
"api": {
|
|
257
|
+
"api": "type",
|
|
258
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.DnsBlockResponse"
|
|
259
|
+
},
|
|
260
|
+
"field": {
|
|
261
|
+
"field": "example"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"didCompile": true,
|
|
265
|
+
"fqnsReferenced": [
|
|
266
|
+
"@aws-cdk/aws-route53resolver-alpha.DnsBlockResponse",
|
|
267
|
+
"@aws-cdk/aws-route53resolver-alpha.DnsBlockResponse#noData"
|
|
268
|
+
],
|
|
269
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dnsBlockResponse = route53resolver_alpha.DnsBlockResponse.noData();\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
270
|
+
"syntaxKindCounter": {
|
|
271
|
+
"10": 1,
|
|
272
|
+
"75": 5,
|
|
273
|
+
"194": 2,
|
|
274
|
+
"196": 1,
|
|
275
|
+
"225": 1,
|
|
276
|
+
"242": 1,
|
|
277
|
+
"243": 1,
|
|
278
|
+
"254": 1,
|
|
279
|
+
"255": 1,
|
|
280
|
+
"256": 1,
|
|
281
|
+
"290": 1
|
|
282
|
+
},
|
|
283
|
+
"fqnsFingerprint": "c43498e6fce1f57f0c1af9ab7b541a7c8f1402534531b0c2a5557fcd6c823000"
|
|
284
|
+
},
|
|
285
|
+
"aedd91f2fb1b4d3b05d0dfabc0d6603f48d323fc74c6c25b4082e76c2c1f755e": {
|
|
286
|
+
"translations": {
|
|
287
|
+
"python": {
|
|
288
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\ndomains_config = route53resolver_alpha.DomainsConfig(\n domain_file_url=\"domainFileUrl\",\n domains=[\"domains\"]\n)",
|
|
289
|
+
"version": "1"
|
|
290
|
+
},
|
|
291
|
+
"csharp": {
|
|
292
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nDomainsConfig domainsConfig = new DomainsConfig {\n DomainFileUrl = \"domainFileUrl\",\n Domains = new [] { \"domains\" }\n};",
|
|
293
|
+
"version": "1"
|
|
294
|
+
},
|
|
295
|
+
"java": {
|
|
296
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nDomainsConfig domainsConfig = DomainsConfig.builder()\n .domainFileUrl(\"domainFileUrl\")\n .domains(List.of(\"domains\"))\n .build();",
|
|
297
|
+
"version": "1"
|
|
298
|
+
},
|
|
299
|
+
"$": {
|
|
300
|
+
"source": "// 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 domainsConfig: route53resolver_alpha.DomainsConfig = {\n domainFileUrl: 'domainFileUrl',\n domains: ['domains'],\n};",
|
|
301
|
+
"version": "0"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"location": {
|
|
305
|
+
"api": {
|
|
306
|
+
"api": "type",
|
|
307
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.DomainsConfig"
|
|
308
|
+
},
|
|
309
|
+
"field": {
|
|
310
|
+
"field": "example"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"didCompile": true,
|
|
314
|
+
"fqnsReferenced": [
|
|
315
|
+
"@aws-cdk/aws-route53resolver-alpha.DomainsConfig"
|
|
316
|
+
],
|
|
317
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst domainsConfig: route53resolver_alpha.DomainsConfig = {\n domainFileUrl: 'domainFileUrl',\n domains: ['domains'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
318
|
+
"syntaxKindCounter": {
|
|
319
|
+
"10": 3,
|
|
320
|
+
"75": 6,
|
|
321
|
+
"153": 1,
|
|
322
|
+
"169": 1,
|
|
323
|
+
"192": 1,
|
|
324
|
+
"193": 1,
|
|
325
|
+
"225": 1,
|
|
326
|
+
"242": 1,
|
|
327
|
+
"243": 1,
|
|
328
|
+
"254": 1,
|
|
329
|
+
"255": 1,
|
|
330
|
+
"256": 1,
|
|
331
|
+
"281": 2,
|
|
332
|
+
"290": 1
|
|
333
|
+
},
|
|
334
|
+
"fqnsFingerprint": "446f74b4660e26b04865626dd9d32c3914822b520a988d65138a0bef4da862da"
|
|
335
|
+
},
|
|
336
|
+
"a507217026709d788eda1a85444c9fd2e8b75f99401315789addbbd02b97a055": {
|
|
337
|
+
"translations": {
|
|
338
|
+
"python": {
|
|
339
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\n# firewall_domains is of type FirewallDomains\n\nfirewall_domain_list = route53resolver_alpha.FirewallDomainList(self, \"MyFirewallDomainList\",\n domains=firewall_domains,\n\n # the properties below are optional\n name=\"name\"\n)",
|
|
340
|
+
"version": "1"
|
|
341
|
+
},
|
|
342
|
+
"csharp": {
|
|
343
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomains firewallDomains;\n\nFirewallDomainList firewallDomainList = new FirewallDomainList(this, \"MyFirewallDomainList\", new FirewallDomainListProps {\n Domains = firewallDomains,\n\n // the properties below are optional\n Name = \"name\"\n});",
|
|
344
|
+
"version": "1"
|
|
345
|
+
},
|
|
346
|
+
"java": {
|
|
347
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomains firewallDomains;\n\nFirewallDomainList firewallDomainList = FirewallDomainList.Builder.create(this, \"MyFirewallDomainList\")\n .domains(firewallDomains)\n\n // the properties below are optional\n .name(\"name\")\n .build();",
|
|
348
|
+
"version": "1"
|
|
349
|
+
},
|
|
350
|
+
"$": {
|
|
351
|
+
"source": "// 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});",
|
|
352
|
+
"version": "0"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"location": {
|
|
356
|
+
"api": {
|
|
357
|
+
"api": "type",
|
|
358
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomainList"
|
|
359
|
+
},
|
|
360
|
+
"field": {
|
|
361
|
+
"field": "example"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"didCompile": true,
|
|
365
|
+
"fqnsReferenced": [
|
|
366
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomainList",
|
|
367
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomainListProps",
|
|
368
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomains"
|
|
369
|
+
],
|
|
370
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallDomainList = new route53resolver_alpha.FirewallDomainList(this, 'MyFirewallDomainList', {\n domains: firewallDomains,\n\n // the properties below are optional\n name: 'name',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
371
|
+
"syntaxKindCounter": {
|
|
372
|
+
"10": 3,
|
|
373
|
+
"75": 10,
|
|
374
|
+
"104": 1,
|
|
375
|
+
"130": 1,
|
|
376
|
+
"153": 1,
|
|
377
|
+
"169": 1,
|
|
378
|
+
"193": 1,
|
|
379
|
+
"194": 1,
|
|
380
|
+
"197": 1,
|
|
381
|
+
"225": 2,
|
|
382
|
+
"242": 2,
|
|
383
|
+
"243": 2,
|
|
384
|
+
"254": 1,
|
|
385
|
+
"255": 1,
|
|
386
|
+
"256": 1,
|
|
387
|
+
"281": 2,
|
|
388
|
+
"290": 1
|
|
389
|
+
},
|
|
390
|
+
"fqnsFingerprint": "1d5be0cd9bfde7513812544904146718574d0ffd6474401e5fad02eda63b3fdd"
|
|
391
|
+
},
|
|
392
|
+
"91ca3916fba710eae86dfb21f29e028d5d4d4748e487b2d94fa5cba325314df8": {
|
|
393
|
+
"translations": {
|
|
394
|
+
"python": {
|
|
395
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\n# firewall_domains is of type FirewallDomains\n\nfirewall_domain_list_props = route53resolver_alpha.FirewallDomainListProps(\n domains=firewall_domains,\n\n # the properties below are optional\n name=\"name\"\n)",
|
|
396
|
+
"version": "1"
|
|
397
|
+
},
|
|
398
|
+
"csharp": {
|
|
399
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomains firewallDomains;\n\nFirewallDomainListProps firewallDomainListProps = new FirewallDomainListProps {\n Domains = firewallDomains,\n\n // the properties below are optional\n Name = \"name\"\n};",
|
|
400
|
+
"version": "1"
|
|
401
|
+
},
|
|
402
|
+
"java": {
|
|
403
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomains firewallDomains;\n\nFirewallDomainListProps firewallDomainListProps = FirewallDomainListProps.builder()\n .domains(firewallDomains)\n\n // the properties below are optional\n .name(\"name\")\n .build();",
|
|
404
|
+
"version": "1"
|
|
405
|
+
},
|
|
406
|
+
"$": {
|
|
407
|
+
"source": "// 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};",
|
|
408
|
+
"version": "0"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"location": {
|
|
412
|
+
"api": {
|
|
413
|
+
"api": "type",
|
|
414
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomainListProps"
|
|
415
|
+
},
|
|
416
|
+
"field": {
|
|
417
|
+
"field": "example"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"didCompile": true,
|
|
421
|
+
"fqnsReferenced": [
|
|
422
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomainListProps",
|
|
423
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomains"
|
|
424
|
+
],
|
|
425
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallDomainListProps: route53resolver_alpha.FirewallDomainListProps = {\n domains: firewallDomains,\n\n // the properties below are optional\n name: 'name',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
426
|
+
"syntaxKindCounter": {
|
|
427
|
+
"10": 2,
|
|
428
|
+
"75": 10,
|
|
429
|
+
"130": 1,
|
|
430
|
+
"153": 2,
|
|
431
|
+
"169": 2,
|
|
432
|
+
"193": 1,
|
|
433
|
+
"225": 2,
|
|
434
|
+
"242": 2,
|
|
435
|
+
"243": 2,
|
|
436
|
+
"254": 1,
|
|
437
|
+
"255": 1,
|
|
438
|
+
"256": 1,
|
|
439
|
+
"281": 2,
|
|
440
|
+
"290": 1
|
|
441
|
+
},
|
|
442
|
+
"fqnsFingerprint": "29bc6e408ca15958f95ed4f10d5b7a7ac98099e23053f9e5a2e945e1c0fcc5a4"
|
|
443
|
+
},
|
|
444
|
+
"926797488214f9cca88732c239e4f721616d334bda77d38eb3b78ab220036f39": {
|
|
445
|
+
"translations": {
|
|
446
|
+
"python": {
|
|
447
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\nfirewall_domains = route53resolver_alpha.FirewallDomains.from_asset(\"assetPath\")",
|
|
448
|
+
"version": "1"
|
|
449
|
+
},
|
|
450
|
+
"csharp": {
|
|
451
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomains firewallDomains = FirewallDomains.FromAsset(\"assetPath\");",
|
|
452
|
+
"version": "1"
|
|
453
|
+
},
|
|
454
|
+
"java": {
|
|
455
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomains firewallDomains = FirewallDomains.fromAsset(\"assetPath\");",
|
|
456
|
+
"version": "1"
|
|
457
|
+
},
|
|
458
|
+
"$": {
|
|
459
|
+
"source": "// 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');",
|
|
460
|
+
"version": "0"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"location": {
|
|
464
|
+
"api": {
|
|
465
|
+
"api": "type",
|
|
466
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallDomains"
|
|
467
|
+
},
|
|
468
|
+
"field": {
|
|
469
|
+
"field": "example"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"didCompile": true,
|
|
473
|
+
"fqnsReferenced": [
|
|
474
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomains",
|
|
475
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallDomains#fromAsset"
|
|
476
|
+
],
|
|
477
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallDomains = route53resolver_alpha.FirewallDomains.fromAsset('assetPath');\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
478
|
+
"syntaxKindCounter": {
|
|
479
|
+
"10": 2,
|
|
480
|
+
"75": 5,
|
|
481
|
+
"194": 2,
|
|
482
|
+
"196": 1,
|
|
483
|
+
"225": 1,
|
|
484
|
+
"242": 1,
|
|
485
|
+
"243": 1,
|
|
486
|
+
"254": 1,
|
|
487
|
+
"255": 1,
|
|
488
|
+
"256": 1,
|
|
489
|
+
"290": 1
|
|
490
|
+
},
|
|
491
|
+
"fqnsFingerprint": "2ab989a635ca2a4f0972e477de0d3f2ed1eff0dabbbb47366fbb2bfa19d83a89"
|
|
492
|
+
},
|
|
493
|
+
"80fc89a934f911b17f2b193eeb8b1613e1cfab8bed2c09b338520131e05f40bc": {
|
|
494
|
+
"translations": {
|
|
495
|
+
"python": {
|
|
496
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\n# firewall_domain_list is of type FirewallDomainList\n# firewall_rule_action is of type FirewallRuleAction\n\nfirewall_rule = route53resolver_alpha.FirewallRule(\n action=firewall_rule_action,\n firewall_domain_list=firewall_domain_list,\n priority=123\n)",
|
|
497
|
+
"version": "1"
|
|
498
|
+
},
|
|
499
|
+
"csharp": {
|
|
500
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRule firewallRule = new FirewallRule {\n Action = firewallRuleAction,\n FirewallDomainList = firewallDomainList,\n Priority = 123\n};",
|
|
501
|
+
"version": "1"
|
|
502
|
+
},
|
|
503
|
+
"java": {
|
|
504
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRule firewallRule = FirewallRule.builder()\n .action(firewallRuleAction)\n .firewallDomainList(firewallDomainList)\n .priority(123)\n .build();",
|
|
505
|
+
"version": "1"
|
|
506
|
+
},
|
|
507
|
+
"$": {
|
|
508
|
+
"source": "// 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};",
|
|
509
|
+
"version": "0"
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
"location": {
|
|
513
|
+
"api": {
|
|
514
|
+
"api": "type",
|
|
515
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRule"
|
|
516
|
+
},
|
|
517
|
+
"field": {
|
|
518
|
+
"field": "example"
|
|
519
|
+
}
|
|
520
|
+
},
|
|
521
|
+
"didCompile": true,
|
|
522
|
+
"fqnsReferenced": [
|
|
523
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRule",
|
|
524
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction",
|
|
525
|
+
"@aws-cdk/aws-route53resolver-alpha.IFirewallDomainList"
|
|
526
|
+
],
|
|
527
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallRule: route53resolver_alpha.FirewallRule = {\n action: firewallRuleAction,\n firewallDomainList: firewallDomainList,\n priority: 123,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
528
|
+
"syntaxKindCounter": {
|
|
529
|
+
"8": 1,
|
|
530
|
+
"10": 1,
|
|
531
|
+
"75": 15,
|
|
532
|
+
"130": 2,
|
|
533
|
+
"153": 3,
|
|
534
|
+
"169": 3,
|
|
535
|
+
"193": 1,
|
|
536
|
+
"225": 3,
|
|
537
|
+
"242": 3,
|
|
538
|
+
"243": 3,
|
|
539
|
+
"254": 1,
|
|
540
|
+
"255": 1,
|
|
541
|
+
"256": 1,
|
|
542
|
+
"281": 3,
|
|
543
|
+
"290": 1
|
|
544
|
+
},
|
|
545
|
+
"fqnsFingerprint": "0562121fe6091dc48ef94f1e0fe327c7489e6009191eb6a729ab81e3d461f991"
|
|
546
|
+
},
|
|
547
|
+
"7204724a1694d36dd3e69d8192adf8f7fb293ca6a9f1554095fc2c88bfe5a925": {
|
|
548
|
+
"translations": {
|
|
549
|
+
"python": {
|
|
550
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\nfirewall_rule_action = route53resolver_alpha.FirewallRuleAction.alert()",
|
|
551
|
+
"version": "1"
|
|
552
|
+
},
|
|
553
|
+
"csharp": {
|
|
554
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallRuleAction firewallRuleAction = FirewallRuleAction.Alert();",
|
|
555
|
+
"version": "1"
|
|
556
|
+
},
|
|
557
|
+
"java": {
|
|
558
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallRuleAction firewallRuleAction = FirewallRuleAction.alert();",
|
|
559
|
+
"version": "1"
|
|
560
|
+
},
|
|
561
|
+
"$": {
|
|
562
|
+
"source": "// 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();",
|
|
563
|
+
"version": "0"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"location": {
|
|
567
|
+
"api": {
|
|
568
|
+
"api": "type",
|
|
569
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction"
|
|
570
|
+
},
|
|
571
|
+
"field": {
|
|
572
|
+
"field": "example"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"didCompile": true,
|
|
576
|
+
"fqnsReferenced": [
|
|
577
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction",
|
|
578
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction#alert"
|
|
579
|
+
],
|
|
580
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallRuleAction = route53resolver_alpha.FirewallRuleAction.alert();\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
581
|
+
"syntaxKindCounter": {
|
|
582
|
+
"10": 1,
|
|
583
|
+
"75": 5,
|
|
584
|
+
"194": 2,
|
|
585
|
+
"196": 1,
|
|
586
|
+
"225": 1,
|
|
587
|
+
"242": 1,
|
|
588
|
+
"243": 1,
|
|
589
|
+
"254": 1,
|
|
590
|
+
"255": 1,
|
|
591
|
+
"256": 1,
|
|
592
|
+
"290": 1
|
|
593
|
+
},
|
|
594
|
+
"fqnsFingerprint": "3f1d51d37f420032e4f2df7204d0bbe73f80f7d2dea399b413dd3e8d11806bdc"
|
|
595
|
+
},
|
|
596
|
+
"ba0fa05b2dbd9ec409f0f96beb8e7fc3559ad96e465f3361b56c1c9080b7c439": {
|
|
597
|
+
"translations": {
|
|
598
|
+
"python": {
|
|
599
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\n# firewall_domain_list is of type FirewallDomainList\n# firewall_rule_action is of type FirewallRuleAction\n\nfirewall_rule_group = route53resolver_alpha.FirewallRuleGroup(self, \"MyFirewallRuleGroup\",\n name=\"name\",\n rules=[route53resolver_alpha.FirewallRule(\n action=firewall_rule_action,\n firewall_domain_list=firewall_domain_list,\n priority=123\n )]\n)",
|
|
600
|
+
"version": "1"
|
|
601
|
+
},
|
|
602
|
+
"csharp": {
|
|
603
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRuleGroup firewallRuleGroup = new FirewallRuleGroup(this, \"MyFirewallRuleGroup\", new FirewallRuleGroupProps {\n Name = \"name\",\n Rules = new [] { new FirewallRule {\n Action = firewallRuleAction,\n FirewallDomainList = firewallDomainList,\n Priority = 123\n } }\n});",
|
|
604
|
+
"version": "1"
|
|
605
|
+
},
|
|
606
|
+
"java": {
|
|
607
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRuleGroup firewallRuleGroup = FirewallRuleGroup.Builder.create(this, \"MyFirewallRuleGroup\")\n .name(\"name\")\n .rules(List.of(FirewallRule.builder()\n .action(firewallRuleAction)\n .firewallDomainList(firewallDomainList)\n .priority(123)\n .build()))\n .build();",
|
|
608
|
+
"version": "1"
|
|
609
|
+
},
|
|
610
|
+
"$": {
|
|
611
|
+
"source": "// 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});",
|
|
612
|
+
"version": "0"
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
"location": {
|
|
616
|
+
"api": {
|
|
617
|
+
"api": "type",
|
|
618
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroup"
|
|
619
|
+
},
|
|
620
|
+
"field": {
|
|
621
|
+
"field": "example"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"didCompile": true,
|
|
625
|
+
"fqnsReferenced": [
|
|
626
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction",
|
|
627
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroup",
|
|
628
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupProps",
|
|
629
|
+
"@aws-cdk/aws-route53resolver-alpha.IFirewallDomainList"
|
|
630
|
+
],
|
|
631
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\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});\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
632
|
+
"syntaxKindCounter": {
|
|
633
|
+
"8": 1,
|
|
634
|
+
"10": 3,
|
|
635
|
+
"75": 17,
|
|
636
|
+
"104": 1,
|
|
637
|
+
"130": 2,
|
|
638
|
+
"153": 2,
|
|
639
|
+
"169": 2,
|
|
640
|
+
"192": 1,
|
|
641
|
+
"193": 2,
|
|
642
|
+
"194": 1,
|
|
643
|
+
"197": 1,
|
|
644
|
+
"225": 3,
|
|
645
|
+
"242": 3,
|
|
646
|
+
"243": 3,
|
|
647
|
+
"254": 1,
|
|
648
|
+
"255": 1,
|
|
649
|
+
"256": 1,
|
|
650
|
+
"281": 5,
|
|
651
|
+
"290": 1
|
|
652
|
+
},
|
|
653
|
+
"fqnsFingerprint": "90d111e59c235ee18619045fb8fb293254d21fce069171053247f5898e3fd21f"
|
|
654
|
+
},
|
|
655
|
+
"b5744a164d0710212210bc15d73e82f724c518af9699bd481a26e4889af9939d": {
|
|
656
|
+
"translations": {
|
|
657
|
+
"python": {
|
|
658
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\nfrom aws_cdk import aws_ec2 as ec2\n\n# firewall_rule_group is of type FirewallRuleGroup\n# vpc is of type Vpc\n\nfirewall_rule_group_association = route53resolver_alpha.FirewallRuleGroupAssociation(self, \"MyFirewallRuleGroupAssociation\",\n firewall_rule_group=firewall_rule_group,\n priority=123,\n vpc=vpc,\n\n # the properties below are optional\n mutation_protection=False,\n name=\"name\"\n)",
|
|
659
|
+
"version": "1"
|
|
660
|
+
},
|
|
661
|
+
"csharp": {
|
|
662
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nFirewallRuleGroup firewallRuleGroup;\nVpc vpc;\n\nFirewallRuleGroupAssociation firewallRuleGroupAssociation = new FirewallRuleGroupAssociation(this, \"MyFirewallRuleGroupAssociation\", new FirewallRuleGroupAssociationProps {\n FirewallRuleGroup = firewallRuleGroup,\n Priority = 123,\n Vpc = vpc,\n\n // the properties below are optional\n MutationProtection = false,\n Name = \"name\"\n});",
|
|
663
|
+
"version": "1"
|
|
664
|
+
},
|
|
665
|
+
"java": {
|
|
666
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nFirewallRuleGroup firewallRuleGroup;\nVpc vpc;\n\nFirewallRuleGroupAssociation firewallRuleGroupAssociation = FirewallRuleGroupAssociation.Builder.create(this, \"MyFirewallRuleGroupAssociation\")\n .firewallRuleGroup(firewallRuleGroup)\n .priority(123)\n .vpc(vpc)\n\n // the properties below are optional\n .mutationProtection(false)\n .name(\"name\")\n .build();",
|
|
667
|
+
"version": "1"
|
|
668
|
+
},
|
|
669
|
+
"$": {
|
|
670
|
+
"source": "// 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 firewallRuleGroup: route53resolver_alpha.FirewallRuleGroup;\ndeclare const vpc: ec2.Vpc;\nconst firewallRuleGroupAssociation = new route53resolver_alpha.FirewallRuleGroupAssociation(this, 'MyFirewallRuleGroupAssociation', {\n firewallRuleGroup: firewallRuleGroup,\n priority: 123,\n vpc: vpc,\n\n // the properties below are optional\n mutationProtection: false,\n name: 'name',\n});",
|
|
671
|
+
"version": "0"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
"location": {
|
|
675
|
+
"api": {
|
|
676
|
+
"api": "type",
|
|
677
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociation"
|
|
678
|
+
},
|
|
679
|
+
"field": {
|
|
680
|
+
"field": "example"
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"didCompile": true,
|
|
684
|
+
"fqnsReferenced": [
|
|
685
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociation",
|
|
686
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationProps",
|
|
687
|
+
"@aws-cdk/aws-route53resolver-alpha.IFirewallRuleGroup",
|
|
688
|
+
"aws-cdk-lib.aws_ec2.IVpc"
|
|
689
|
+
],
|
|
690
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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 firewallRuleGroup: route53resolver_alpha.FirewallRuleGroup;\ndeclare const vpc: ec2.Vpc;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallRuleGroupAssociation = new route53resolver_alpha.FirewallRuleGroupAssociation(this, 'MyFirewallRuleGroupAssociation', {\n firewallRuleGroup: firewallRuleGroup,\n priority: 123,\n vpc: vpc,\n\n // the properties below are optional\n mutationProtection: false,\n name: 'name',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
691
|
+
"syntaxKindCounter": {
|
|
692
|
+
"8": 1,
|
|
693
|
+
"10": 4,
|
|
694
|
+
"75": 19,
|
|
695
|
+
"91": 1,
|
|
696
|
+
"104": 1,
|
|
697
|
+
"130": 2,
|
|
698
|
+
"153": 2,
|
|
699
|
+
"169": 2,
|
|
700
|
+
"193": 1,
|
|
701
|
+
"194": 1,
|
|
702
|
+
"197": 1,
|
|
703
|
+
"225": 3,
|
|
704
|
+
"242": 3,
|
|
705
|
+
"243": 3,
|
|
706
|
+
"254": 2,
|
|
707
|
+
"255": 2,
|
|
708
|
+
"256": 1,
|
|
709
|
+
"257": 1,
|
|
710
|
+
"258": 1,
|
|
711
|
+
"281": 5,
|
|
712
|
+
"290": 1
|
|
713
|
+
},
|
|
714
|
+
"fqnsFingerprint": "0871f76253be3384cda4a9f106d91235d9f18a243ff972ab6598864abce0b1b6"
|
|
715
|
+
},
|
|
716
|
+
"f632a1c8b55224b0bdd4381ae2555fa677daff2830ba09fa102ab9440ca498de": {
|
|
717
|
+
"translations": {
|
|
718
|
+
"python": {
|
|
719
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\nfrom aws_cdk import aws_ec2 as ec2\n\n# vpc is of type Vpc\n\nfirewall_rule_group_association_options = route53resolver_alpha.FirewallRuleGroupAssociationOptions(\n priority=123,\n vpc=vpc,\n\n # the properties below are optional\n mutation_protection=False,\n name=\"name\"\n)",
|
|
720
|
+
"version": "1"
|
|
721
|
+
},
|
|
722
|
+
"csharp": {
|
|
723
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nVpc vpc;\n\nFirewallRuleGroupAssociationOptions firewallRuleGroupAssociationOptions = new FirewallRuleGroupAssociationOptions {\n Priority = 123,\n Vpc = vpc,\n\n // the properties below are optional\n MutationProtection = false,\n Name = \"name\"\n};",
|
|
724
|
+
"version": "1"
|
|
725
|
+
},
|
|
726
|
+
"java": {
|
|
727
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nVpc vpc;\n\nFirewallRuleGroupAssociationOptions firewallRuleGroupAssociationOptions = FirewallRuleGroupAssociationOptions.builder()\n .priority(123)\n .vpc(vpc)\n\n // the properties below are optional\n .mutationProtection(false)\n .name(\"name\")\n .build();",
|
|
728
|
+
"version": "1"
|
|
729
|
+
},
|
|
730
|
+
"$": {
|
|
731
|
+
"source": "// 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};",
|
|
732
|
+
"version": "0"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"location": {
|
|
736
|
+
"api": {
|
|
737
|
+
"api": "type",
|
|
738
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationOptions"
|
|
739
|
+
},
|
|
740
|
+
"field": {
|
|
741
|
+
"field": "example"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"didCompile": true,
|
|
745
|
+
"fqnsReferenced": [
|
|
746
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationOptions",
|
|
747
|
+
"aws-cdk-lib.aws_ec2.IVpc"
|
|
748
|
+
],
|
|
749
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\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};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
750
|
+
"syntaxKindCounter": {
|
|
751
|
+
"8": 1,
|
|
752
|
+
"10": 3,
|
|
753
|
+
"75": 14,
|
|
754
|
+
"91": 1,
|
|
755
|
+
"130": 1,
|
|
756
|
+
"153": 2,
|
|
757
|
+
"169": 2,
|
|
758
|
+
"193": 1,
|
|
759
|
+
"225": 2,
|
|
760
|
+
"242": 2,
|
|
761
|
+
"243": 2,
|
|
762
|
+
"254": 2,
|
|
763
|
+
"255": 2,
|
|
764
|
+
"256": 1,
|
|
765
|
+
"257": 1,
|
|
766
|
+
"258": 1,
|
|
767
|
+
"281": 4,
|
|
768
|
+
"290": 1
|
|
769
|
+
},
|
|
770
|
+
"fqnsFingerprint": "b46b201a62b851abe97ea27bbd53240a77f482ffb665bd7f05504bd5d67a3db6"
|
|
771
|
+
},
|
|
772
|
+
"c9db423a6198ef33f263c2bb782785500388f3222e611862166cd30fdb0b6141": {
|
|
773
|
+
"translations": {
|
|
774
|
+
"python": {
|
|
775
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\nfrom aws_cdk import aws_ec2 as ec2\n\n# firewall_rule_group is of type FirewallRuleGroup\n# vpc is of type Vpc\n\nfirewall_rule_group_association_props = route53resolver_alpha.FirewallRuleGroupAssociationProps(\n firewall_rule_group=firewall_rule_group,\n priority=123,\n vpc=vpc,\n\n # the properties below are optional\n mutation_protection=False,\n name=\"name\"\n)",
|
|
776
|
+
"version": "1"
|
|
777
|
+
},
|
|
778
|
+
"csharp": {
|
|
779
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nFirewallRuleGroup firewallRuleGroup;\nVpc vpc;\n\nFirewallRuleGroupAssociationProps firewallRuleGroupAssociationProps = new FirewallRuleGroupAssociationProps {\n FirewallRuleGroup = firewallRuleGroup,\n Priority = 123,\n Vpc = vpc,\n\n // the properties below are optional\n MutationProtection = false,\n Name = \"name\"\n};",
|
|
780
|
+
"version": "1"
|
|
781
|
+
},
|
|
782
|
+
"java": {
|
|
783
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nFirewallRuleGroup firewallRuleGroup;\nVpc vpc;\n\nFirewallRuleGroupAssociationProps firewallRuleGroupAssociationProps = FirewallRuleGroupAssociationProps.builder()\n .firewallRuleGroup(firewallRuleGroup)\n .priority(123)\n .vpc(vpc)\n\n // the properties below are optional\n .mutationProtection(false)\n .name(\"name\")\n .build();",
|
|
784
|
+
"version": "1"
|
|
785
|
+
},
|
|
786
|
+
"$": {
|
|
787
|
+
"source": "// 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 firewallRuleGroup: route53resolver_alpha.FirewallRuleGroup;\ndeclare const vpc: ec2.Vpc;\nconst firewallRuleGroupAssociationProps: route53resolver_alpha.FirewallRuleGroupAssociationProps = {\n firewallRuleGroup: firewallRuleGroup,\n priority: 123,\n vpc: vpc,\n\n // the properties below are optional\n mutationProtection: false,\n name: 'name',\n};",
|
|
788
|
+
"version": "0"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"location": {
|
|
792
|
+
"api": {
|
|
793
|
+
"api": "type",
|
|
794
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationProps"
|
|
795
|
+
},
|
|
796
|
+
"field": {
|
|
797
|
+
"field": "example"
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"didCompile": true,
|
|
801
|
+
"fqnsReferenced": [
|
|
802
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupAssociationProps",
|
|
803
|
+
"@aws-cdk/aws-route53resolver-alpha.IFirewallRuleGroup",
|
|
804
|
+
"aws-cdk-lib.aws_ec2.IVpc"
|
|
805
|
+
],
|
|
806
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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 firewallRuleGroup: route53resolver_alpha.FirewallRuleGroup;\ndeclare const vpc: ec2.Vpc;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallRuleGroupAssociationProps: route53resolver_alpha.FirewallRuleGroupAssociationProps = {\n firewallRuleGroup: firewallRuleGroup,\n priority: 123,\n vpc: vpc,\n\n // the properties below are optional\n mutationProtection: false,\n name: 'name',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
807
|
+
"syntaxKindCounter": {
|
|
808
|
+
"8": 1,
|
|
809
|
+
"10": 3,
|
|
810
|
+
"75": 19,
|
|
811
|
+
"91": 1,
|
|
812
|
+
"130": 2,
|
|
813
|
+
"153": 3,
|
|
814
|
+
"169": 3,
|
|
815
|
+
"193": 1,
|
|
816
|
+
"225": 3,
|
|
817
|
+
"242": 3,
|
|
818
|
+
"243": 3,
|
|
819
|
+
"254": 2,
|
|
820
|
+
"255": 2,
|
|
821
|
+
"256": 1,
|
|
822
|
+
"257": 1,
|
|
823
|
+
"258": 1,
|
|
824
|
+
"281": 5,
|
|
825
|
+
"290": 1
|
|
826
|
+
},
|
|
827
|
+
"fqnsFingerprint": "17df4bcebdc99e0168590984500b284ea3de96dfd713f0301a5f49012af3be3d"
|
|
828
|
+
},
|
|
829
|
+
"e6d20b58c8876f58788de272b346dbc7101d0db15a0a88c74aaf0899ec481690": {
|
|
830
|
+
"translations": {
|
|
831
|
+
"python": {
|
|
832
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_route53resolver_alpha as route53resolver_alpha\n\n# firewall_domain_list is of type FirewallDomainList\n# firewall_rule_action is of type FirewallRuleAction\n\nfirewall_rule_group_props = route53resolver_alpha.FirewallRuleGroupProps(\n name=\"name\",\n rules=[route53resolver_alpha.FirewallRule(\n action=firewall_rule_action,\n firewall_domain_list=firewall_domain_list,\n priority=123\n )]\n)",
|
|
833
|
+
"version": "1"
|
|
834
|
+
},
|
|
835
|
+
"csharp": {
|
|
836
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.Route53Resolver.Alpha;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRuleGroupProps firewallRuleGroupProps = new FirewallRuleGroupProps {\n Name = \"name\",\n Rules = new [] { new FirewallRule {\n Action = firewallRuleAction,\n FirewallDomainList = firewallDomainList,\n Priority = 123\n } }\n};",
|
|
837
|
+
"version": "1"
|
|
838
|
+
},
|
|
839
|
+
"java": {
|
|
840
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.route53resolver.alpha.*;\n\nFirewallDomainList firewallDomainList;\nFirewallRuleAction firewallRuleAction;\n\nFirewallRuleGroupProps firewallRuleGroupProps = FirewallRuleGroupProps.builder()\n .name(\"name\")\n .rules(List.of(FirewallRule.builder()\n .action(firewallRuleAction)\n .firewallDomainList(firewallDomainList)\n .priority(123)\n .build()))\n .build();",
|
|
841
|
+
"version": "1"
|
|
842
|
+
},
|
|
843
|
+
"$": {
|
|
844
|
+
"source": "// 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};",
|
|
845
|
+
"version": "0"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"location": {
|
|
849
|
+
"api": {
|
|
850
|
+
"api": "type",
|
|
851
|
+
"fqn": "@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupProps"
|
|
852
|
+
},
|
|
853
|
+
"field": {
|
|
854
|
+
"field": "example"
|
|
855
|
+
}
|
|
856
|
+
},
|
|
857
|
+
"didCompile": true,
|
|
858
|
+
"fqnsReferenced": [
|
|
859
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleAction",
|
|
860
|
+
"@aws-cdk/aws-route53resolver-alpha.FirewallRuleGroupProps",
|
|
861
|
+
"@aws-cdk/aws-route53resolver-alpha.IFirewallDomainList"
|
|
862
|
+
],
|
|
863
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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;\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst firewallRuleGroupProps: route53resolver_alpha.FirewallRuleGroupProps = {\n name: 'name',\n rules: [{\n action: firewallRuleAction,\n firewallDomainList: firewallDomainList,\n priority: 123,\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
864
|
+
"syntaxKindCounter": {
|
|
865
|
+
"8": 1,
|
|
866
|
+
"10": 2,
|
|
867
|
+
"75": 17,
|
|
868
|
+
"130": 2,
|
|
869
|
+
"153": 3,
|
|
870
|
+
"169": 3,
|
|
871
|
+
"192": 1,
|
|
872
|
+
"193": 2,
|
|
873
|
+
"225": 3,
|
|
874
|
+
"242": 3,
|
|
875
|
+
"243": 3,
|
|
876
|
+
"254": 1,
|
|
877
|
+
"255": 1,
|
|
878
|
+
"256": 1,
|
|
879
|
+
"281": 5,
|
|
880
|
+
"290": 1
|
|
881
|
+
},
|
|
882
|
+
"fqnsFingerprint": "42860c474621f74909bee0b07216dd29f2a0544d901301d27c6a25430bb2a459"
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
}
|