@aws-cdk/aws-msk-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.
@@ -0,0 +1,1130 @@
1
+ {
2
+ "version": "2",
3
+ "toolVersion": "1.50.0",
4
+ "snippets": {
5
+ "cb840666411d496d311c8046f0d8eb51caa3fa8f1ee32506c1aadd00010fde54": {
6
+ "translations": {
7
+ "python": {
8
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = Cluster(self, \"Cluster\",\n kafka_version=msk.KafkaVersion.V2_8_1,\n vpc=vpc\n)",
9
+ "version": "1"
10
+ },
11
+ "csharp": {
12
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"Cluster\", new Struct {\n KafkaVersion = KafkaVersion.V2_8_1,\n Vpc = vpc\n});",
13
+ "version": "1"
14
+ },
15
+ "java": {
16
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = Cluster.Builder.create(this, \"Cluster\")\n .kafkaVersion(KafkaVersion.V2_8_1)\n .vpc(vpc)\n .build();",
17
+ "version": "1"
18
+ },
19
+ "$": {
20
+ "source": "import * as msk from '@aws-cdk/aws-msk-alpha';\n\nconst cluster = new Cluster(this, 'Cluster', {\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});",
21
+ "version": "0"
22
+ }
23
+ },
24
+ "location": {
25
+ "api": {
26
+ "api": "moduleReadme",
27
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
28
+ },
29
+ "field": {
30
+ "field": "markdown",
31
+ "line": 22
32
+ }
33
+ },
34
+ "didCompile": false,
35
+ "fqnsReferenced": [
36
+ "@aws-cdk/aws-msk-alpha.KafkaVersion",
37
+ "@aws-cdk/aws-msk-alpha.KafkaVersion#V2_8_1"
38
+ ],
39
+ "fullSource": "import * as msk from '@aws-cdk/aws-msk-alpha';\n\nconst cluster = new Cluster(this, 'Cluster', {\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});",
40
+ "syntaxKindCounter": {
41
+ "10": 2,
42
+ "75": 8,
43
+ "104": 1,
44
+ "193": 1,
45
+ "194": 2,
46
+ "197": 1,
47
+ "225": 1,
48
+ "242": 1,
49
+ "243": 1,
50
+ "254": 1,
51
+ "255": 1,
52
+ "256": 1,
53
+ "281": 1,
54
+ "282": 1,
55
+ "290": 1
56
+ },
57
+ "fqnsFingerprint": "37bac76708249e0cf3ed17b3fd9143d654e8f552c3ad95835955d43ba1556dab"
58
+ },
59
+ "c345f8017c1c169b5642d6b3b9d887bb395c15f1f71cebb58b1119623320a7ff": {
60
+ "translations": {
61
+ "python": {
62
+ "source": "import aws_cdk.aws_msk_alpha as msk\nimport aws_cdk.aws_ec2 as ec2\n\ncluster = msk.Cluster(self, \"Cluster\", ...)\n\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181))\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094))",
63
+ "version": "1"
64
+ },
65
+ "csharp": {
66
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nCluster cluster = new Cluster(this, \"Cluster\", new ClusterProps { ... });\n\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(2181));\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(9094));",
67
+ "version": "1"
68
+ },
69
+ "java": {
70
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nCluster cluster = Cluster.Builder.create(this, \"Cluster\")....build();\n\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(2181));\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(9094));",
71
+ "version": "1"
72
+ },
73
+ "$": {
74
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
75
+ "version": "0"
76
+ }
77
+ },
78
+ "location": {
79
+ "api": {
80
+ "api": "moduleReadme",
81
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
82
+ },
83
+ "field": {
84
+ "field": "markdown",
85
+ "line": 35
86
+ }
87
+ },
88
+ "didCompile": false,
89
+ "fqnsReferenced": [
90
+ "@aws-cdk/aws-msk-alpha.Cluster",
91
+ "@aws-cdk/aws-msk-alpha.ClusterProps",
92
+ "aws-cdk-lib.aws_ec2.Connections#allowFrom",
93
+ "aws-cdk-lib.aws_ec2.IConnectable",
94
+ "aws-cdk-lib.aws_ec2.Peer",
95
+ "aws-cdk-lib.aws_ec2.Peer#ipv4",
96
+ "aws-cdk-lib.aws_ec2.Port",
97
+ "aws-cdk-lib.aws_ec2.Port#tcp"
98
+ ],
99
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
100
+ "syntaxKindCounter": {
101
+ "8": 2,
102
+ "10": 5,
103
+ "75": 24,
104
+ "104": 1,
105
+ "193": 1,
106
+ "194": 13,
107
+ "196": 6,
108
+ "197": 1,
109
+ "225": 1,
110
+ "226": 2,
111
+ "242": 1,
112
+ "243": 1,
113
+ "254": 2,
114
+ "255": 2,
115
+ "256": 2,
116
+ "283": 1,
117
+ "290": 1
118
+ },
119
+ "fqnsFingerprint": "bf0d508ebea6390843197de7a686477535e228fbb28ee3af8ff2a31565fa7465"
120
+ },
121
+ "2ae2abef4b783b93c3df13edcc282e3030b82f3b879d2bb23bbb9d21a753a6ca": {
122
+ "translations": {
123
+ "python": {
124
+ "source": "cdk.CfnOutput(self, \"BootstrapBrokers\", value=cluster.bootstrap_brokers)\ncdk.CfnOutput(self, \"BootstrapBrokersTls\", value=cluster.bootstrap_brokers_tls)\ncdk.CfnOutput(self, \"BootstrapBrokersSaslScram\", value=cluster.bootstrap_brokers_sasl_scram)\ncdk.CfnOutput(self, \"ZookeeperConnection\", value=cluster.zookeeper_connection_string)\ncdk.CfnOutput(self, \"ZookeeperConnectionTls\", value=cluster.zookeeper_connection_string_tls)",
125
+ "version": "1"
126
+ },
127
+ "csharp": {
128
+ "source": "new cdk.CfnOutput(this, \"BootstrapBrokers\", new Struct { Value = cluster.BootstrapBrokers });\nnew cdk.CfnOutput(this, \"BootstrapBrokersTls\", new Struct { Value = cluster.BootstrapBrokersTls });\nnew cdk.CfnOutput(this, \"BootstrapBrokersSaslScram\", new Struct { Value = cluster.BootstrapBrokersSaslScram });\nnew cdk.CfnOutput(this, \"ZookeeperConnection\", new Struct { Value = cluster.ZookeeperConnectionString });\nnew cdk.CfnOutput(this, \"ZookeeperConnectionTls\", new Struct { Value = cluster.ZookeeperConnectionStringTls });",
129
+ "version": "1"
130
+ },
131
+ "java": {
132
+ "source": "CfnOutput.Builder.create(this, \"BootstrapBrokers\").value(cluster.getBootstrapBrokers()).build();\nCfnOutput.Builder.create(this, \"BootstrapBrokersTls\").value(cluster.getBootstrapBrokersTls()).build();\nCfnOutput.Builder.create(this, \"BootstrapBrokersSaslScram\").value(cluster.getBootstrapBrokersSaslScram()).build();\nCfnOutput.Builder.create(this, \"ZookeeperConnection\").value(cluster.getZookeeperConnectionString()).build();\nCfnOutput.Builder.create(this, \"ZookeeperConnectionTls\").value(cluster.getZookeeperConnectionStringTls()).build();",
133
+ "version": "1"
134
+ },
135
+ "$": {
136
+ "source": "new cdk.CfnOutput(this, 'BootstrapBrokers', { value: cluster.bootstrapBrokers });\nnew cdk.CfnOutput(this, 'BootstrapBrokersTls', { value: cluster.bootstrapBrokersTls });\nnew cdk.CfnOutput(this, 'BootstrapBrokersSaslScram', { value: cluster.bootstrapBrokersSaslScram });\nnew cdk.CfnOutput(this, 'ZookeeperConnection', { value: cluster.zookeeperConnectionString });\nnew cdk.CfnOutput(this, 'ZookeeperConnectionTls', { value: cluster.zookeeperConnectionStringTls });",
137
+ "version": "0"
138
+ }
139
+ },
140
+ "location": {
141
+ "api": {
142
+ "api": "moduleReadme",
143
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
144
+ },
145
+ "field": {
146
+ "field": "markdown",
147
+ "line": 55
148
+ }
149
+ },
150
+ "didCompile": false,
151
+ "fqnsReferenced": [],
152
+ "fullSource": "new cdk.CfnOutput(this, 'BootstrapBrokers', { value: cluster.bootstrapBrokers });\nnew cdk.CfnOutput(this, 'BootstrapBrokersTls', { value: cluster.bootstrapBrokersTls });\nnew cdk.CfnOutput(this, 'BootstrapBrokersSaslScram', { value: cluster.bootstrapBrokersSaslScram });\nnew cdk.CfnOutput(this, 'ZookeeperConnection', { value: cluster.zookeeperConnectionString });\nnew cdk.CfnOutput(this, 'ZookeeperConnectionTls', { value: cluster.zookeeperConnectionStringTls });",
153
+ "syntaxKindCounter": {
154
+ "10": 5,
155
+ "75": 25,
156
+ "104": 5,
157
+ "193": 5,
158
+ "194": 10,
159
+ "197": 5,
160
+ "226": 5,
161
+ "281": 5,
162
+ "290": 1
163
+ },
164
+ "fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
165
+ },
166
+ "a29affc49768f714bab93625b38e2762b98c92a21742c9999ee1218fa4b5a92e": {
167
+ "translations": {
168
+ "python": {
169
+ "source": "cluster = msk.Cluster.from_cluster_arn(self, \"Cluster\", \"arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1\")",
170
+ "version": "1"
171
+ },
172
+ "csharp": {
173
+ "source": "var cluster = msk.Cluster.FromClusterArn(this, \"Cluster\", \"arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1\");",
174
+ "version": "1"
175
+ },
176
+ "java": {
177
+ "source": "Object cluster = msk.Cluster.fromClusterArn(this, \"Cluster\", \"arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1\");",
178
+ "version": "1"
179
+ },
180
+ "$": {
181
+ "source": "const cluster = msk.Cluster.fromClusterArn(this, 'Cluster', 'arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1')",
182
+ "version": "0"
183
+ }
184
+ },
185
+ "location": {
186
+ "api": {
187
+ "api": "moduleReadme",
188
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
189
+ },
190
+ "field": {
191
+ "field": "markdown",
192
+ "line": 67
193
+ }
194
+ },
195
+ "didCompile": false,
196
+ "fqnsReferenced": [],
197
+ "fullSource": "const cluster = msk.Cluster.fromClusterArn(this, 'Cluster', 'arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1')",
198
+ "syntaxKindCounter": {
199
+ "10": 2,
200
+ "75": 4,
201
+ "104": 1,
202
+ "194": 2,
203
+ "196": 1,
204
+ "225": 1,
205
+ "242": 1,
206
+ "243": 1,
207
+ "290": 1
208
+ },
209
+ "fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
210
+ },
211
+ "f8a5f518f2706a7f376a52637709270c712e6c21b7b5c200abd7c50a44e51641": {
212
+ "translations": {
213
+ "python": {
214
+ "source": "import aws_cdk.aws_msk_alpha as msk\nimport aws_cdk.aws_acmpca as acmpca\n\ncluster = msk.Cluster(self, \"Cluster\", msk.ClusterProps(\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n), {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.tls(\n certificate_authorities=[\n acmpca.CertificateAuthority.from_certificate_authority_arn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\")\n ]\n))",
215
+ "version": "1"
216
+ },
217
+ "csharp": {
218
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\nusing Amazon.CDK.AWS.ACMPCA;\n\nCluster cluster = new Cluster(this, \"Cluster\", new ClusterProps {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Dictionary<string, ClientBrokerEncryption> {\n { \"clientBroker\", ClientBrokerEncryption.TLS }\n}, clientAuthentication, ClientAuthentication.Tls(new TlsAuthProps {\n CertificateAuthorities = new [] { CertificateAuthority.FromCertificateAuthorityArn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\") }\n}));",
219
+ "version": "1"
220
+ },
221
+ "java": {
222
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\nimport software.amazon.awscdk.services.acmpca.*;\n\nCluster cluster = new Cluster(this, \"Cluster\", ClusterProps.builder()\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n .build(), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.tls(TlsAuthProps.builder()\n .certificateAuthorities(List.of(CertificateAuthority.fromCertificateAuthorityArn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\")))\n .build()));",
223
+ "version": "1"
224
+ },
225
+ "$": {
226
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as acmpca from \"aws-cdk-lib/aws-acmpca\"\n\nconst cluster = new msk.Cluster(this, 'Cluster', {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n stack,\n \"CertificateAuthority\",\n \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\"\n ),\n ],\n }),\n });\n});",
227
+ "version": "0"
228
+ }
229
+ },
230
+ "location": {
231
+ "api": {
232
+ "api": "moduleReadme",
233
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
234
+ },
235
+ "field": {
236
+ "field": "markdown",
237
+ "line": 81
238
+ }
239
+ },
240
+ "didCompile": false,
241
+ "fqnsReferenced": [
242
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
243
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#tls",
244
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
245
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
246
+ "@aws-cdk/aws-msk-alpha.Cluster",
247
+ "@aws-cdk/aws-msk-alpha.ClusterProps",
248
+ "@aws-cdk/aws-msk-alpha.TlsAuthProps",
249
+ "aws-cdk-lib.aws_acmpca.CertificateAuthority",
250
+ "aws-cdk-lib.aws_acmpca.CertificateAuthority#fromCertificateAuthorityArn"
251
+ ],
252
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as acmpca from \"aws-cdk-lib/aws-acmpca\"\n\nconst cluster = new msk.Cluster(this, 'Cluster', {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n stack,\n \"CertificateAuthority\",\n \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\"\n ),\n ],\n }),\n });\n});",
253
+ "syntaxKindCounter": {
254
+ "10": 5,
255
+ "75": 19,
256
+ "104": 1,
257
+ "192": 1,
258
+ "193": 3,
259
+ "194": 7,
260
+ "196": 2,
261
+ "197": 1,
262
+ "224": 2,
263
+ "225": 1,
264
+ "242": 1,
265
+ "243": 1,
266
+ "254": 2,
267
+ "255": 2,
268
+ "256": 2,
269
+ "281": 2,
270
+ "283": 1,
271
+ "290": 1
272
+ },
273
+ "fqnsFingerprint": "1fbbe37159466c82ca72068eb7e2348dab8ff47c306f44aa8ed394aadb075065"
274
+ },
275
+ "fee7787184211e222b00054508278c2e83c9e80dc430cbb227fb5c6077468602": {
276
+ "translations": {
277
+ "python": {
278
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = msk.cluster(self, \"cluster\", {\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n}, {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.sasl(\n scram=True\n))",
279
+ "version": "1"
280
+ },
281
+ "csharp": {
282
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"cluster\", new Struct {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Struct {\n ClientBroker = ClientBrokerEncryption.TLS\n}, clientAuthentication, ClientAuthentication.Sasl(new SaslAuthProps {\n Scram = true\n}));",
283
+ "version": "1"
284
+ },
285
+ "java": {
286
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = new cluster(this, \"cluster\", Map.of(\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.sasl(SaslAuthProps.builder()\n .scram(true)\n .build()));",
287
+ "version": "1"
288
+ },
289
+ "$": {
290
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
291
+ "version": "0"
292
+ }
293
+ },
294
+ "location": {
295
+ "api": {
296
+ "api": "moduleReadme",
297
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
298
+ },
299
+ "field": {
300
+ "field": "markdown",
301
+ "line": 107
302
+ }
303
+ },
304
+ "didCompile": false,
305
+ "fqnsReferenced": [
306
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
307
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#sasl",
308
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
309
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
310
+ "@aws-cdk/aws-msk-alpha.SaslAuthProps"
311
+ ],
312
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
313
+ "syntaxKindCounter": {
314
+ "10": 2,
315
+ "75": 14,
316
+ "104": 1,
317
+ "106": 1,
318
+ "193": 3,
319
+ "194": 5,
320
+ "196": 1,
321
+ "197": 1,
322
+ "225": 1,
323
+ "242": 1,
324
+ "243": 1,
325
+ "254": 1,
326
+ "255": 1,
327
+ "256": 1,
328
+ "281": 2,
329
+ "283": 1,
330
+ "290": 1
331
+ },
332
+ "fqnsFingerprint": "b8f845b2f995b6cc88c24714b4737253b36f57c382e126167e1921b59ba48d10"
333
+ },
334
+ "e6f7a12dfe227cb129f1aa5e7e0eb94a159d7f839e44227aca7cc01e3a229fba": {
335
+ "translations": {
336
+ "python": {
337
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = msk.cluster(self, \"cluster\", {\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n}, {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.sasl(\n iam=True\n))",
338
+ "version": "1"
339
+ },
340
+ "csharp": {
341
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"cluster\", new Struct {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Struct {\n ClientBroker = ClientBrokerEncryption.TLS\n}, clientAuthentication, ClientAuthentication.Sasl(new SaslAuthProps {\n Iam = true\n}));",
342
+ "version": "1"
343
+ },
344
+ "java": {
345
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = new cluster(this, \"cluster\", Map.of(\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.sasl(SaslAuthProps.builder()\n .iam(true)\n .build()));",
346
+ "version": "1"
347
+ },
348
+ "$": {
349
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n iam: true,\n }),\n})",
350
+ "version": "0"
351
+ }
352
+ },
353
+ "location": {
354
+ "api": {
355
+ "api": "moduleReadme",
356
+ "moduleFqn": "@aws-cdk/aws-msk-alpha"
357
+ },
358
+ "field": {
359
+ "field": "markdown",
360
+ "line": 125
361
+ }
362
+ },
363
+ "didCompile": false,
364
+ "fqnsReferenced": [
365
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
366
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#sasl",
367
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
368
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
369
+ "@aws-cdk/aws-msk-alpha.SaslAuthProps"
370
+ ],
371
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n iam: true,\n }),\n})",
372
+ "syntaxKindCounter": {
373
+ "10": 2,
374
+ "75": 14,
375
+ "104": 1,
376
+ "106": 1,
377
+ "193": 3,
378
+ "194": 5,
379
+ "196": 1,
380
+ "197": 1,
381
+ "225": 1,
382
+ "242": 1,
383
+ "243": 1,
384
+ "254": 1,
385
+ "255": 1,
386
+ "256": 1,
387
+ "281": 2,
388
+ "283": 1,
389
+ "290": 1
390
+ },
391
+ "fqnsFingerprint": "b8f845b2f995b6cc88c24714b4737253b36f57c382e126167e1921b59ba48d10"
392
+ },
393
+ "88b7418011c4e900758130e11c31562b3097104145fbb989aae0316c16cf9934": {
394
+ "translations": {
395
+ "python": {
396
+ "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_msk_alpha as msk_alpha\nfrom aws_cdk import aws_logs as logs\nfrom aws_cdk import aws_s3 as s3\n\n# bucket is of type Bucket\n# log_group is of type LogGroup\n\nbroker_logging = msk_alpha.BrokerLogging(\n cloudwatch_log_group=log_group,\n firehose_delivery_stream_name=\"firehoseDeliveryStreamName\",\n s3=msk_alpha.S3LoggingConfiguration(\n bucket=bucket,\n\n # the properties below are optional\n prefix=\"prefix\"\n )\n)",
397
+ "version": "1"
398
+ },
399
+ "csharp": {
400
+ "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.MSK.Alpha;\nusing Amazon.CDK.AWS.Logs;\nusing Amazon.CDK.AWS.S3;\n\nBucket bucket;\nLogGroup logGroup;\n\nBrokerLogging brokerLogging = new BrokerLogging {\n CloudwatchLogGroup = logGroup,\n FirehoseDeliveryStreamName = \"firehoseDeliveryStreamName\",\n S3 = new S3LoggingConfiguration {\n Bucket = bucket,\n\n // the properties below are optional\n Prefix = \"prefix\"\n }\n};",
401
+ "version": "1"
402
+ },
403
+ "java": {
404
+ "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.msk.alpha.*;\nimport software.amazon.awscdk.services.logs.*;\nimport software.amazon.awscdk.services.s3.*;\n\nBucket bucket;\nLogGroup logGroup;\n\nBrokerLogging brokerLogging = BrokerLogging.builder()\n .cloudwatchLogGroup(logGroup)\n .firehoseDeliveryStreamName(\"firehoseDeliveryStreamName\")\n .s3(S3LoggingConfiguration.builder()\n .bucket(bucket)\n\n // the properties below are optional\n .prefix(\"prefix\")\n .build())\n .build();",
405
+ "version": "1"
406
+ },
407
+ "$": {
408
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_logs as logs } from 'aws-cdk-lib';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const logGroup: logs.LogGroup;\nconst brokerLogging: msk_alpha.BrokerLogging = {\n cloudwatchLogGroup: logGroup,\n firehoseDeliveryStreamName: 'firehoseDeliveryStreamName',\n s3: {\n bucket: bucket,\n\n // the properties below are optional\n prefix: 'prefix',\n },\n};",
409
+ "version": "0"
410
+ }
411
+ },
412
+ "location": {
413
+ "api": {
414
+ "api": "type",
415
+ "fqn": "@aws-cdk/aws-msk-alpha.BrokerLogging"
416
+ },
417
+ "field": {
418
+ "field": "example"
419
+ }
420
+ },
421
+ "didCompile": true,
422
+ "fqnsReferenced": [
423
+ "@aws-cdk/aws-msk-alpha.BrokerLogging",
424
+ "@aws-cdk/aws-msk-alpha.S3LoggingConfiguration",
425
+ "aws-cdk-lib.aws_logs.ILogGroup",
426
+ "aws-cdk-lib.aws_s3.IBucket"
427
+ ],
428
+ "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 msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_logs as logs } from 'aws-cdk-lib';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\ndeclare const logGroup: logs.LogGroup;\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 brokerLogging: msk_alpha.BrokerLogging = {\n cloudwatchLogGroup: logGroup,\n firehoseDeliveryStreamName: 'firehoseDeliveryStreamName',\n s3: {\n bucket: bucket,\n\n // the properties below are optional\n prefix: 'prefix',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
429
+ "syntaxKindCounter": {
430
+ "10": 5,
431
+ "75": 21,
432
+ "130": 2,
433
+ "153": 3,
434
+ "169": 3,
435
+ "193": 2,
436
+ "225": 3,
437
+ "242": 3,
438
+ "243": 3,
439
+ "254": 3,
440
+ "255": 3,
441
+ "256": 1,
442
+ "257": 2,
443
+ "258": 2,
444
+ "281": 5,
445
+ "290": 1
446
+ },
447
+ "fqnsFingerprint": "a39f68001c74d09eef80706612a5453569cedcbbeff71e9aad6d21d104b62478"
448
+ },
449
+ "abc52bbc5650c79e6165ed74f972426ef4f5c398d51f916ab8e78ae00133b602": {
450
+ "translations": {
451
+ "python": {
452
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = msk.cluster(self, \"cluster\", {\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n}, {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.sasl(\n scram=True\n))",
453
+ "version": "1"
454
+ },
455
+ "csharp": {
456
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"cluster\", new Struct {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Struct {\n ClientBroker = ClientBrokerEncryption.TLS\n}, clientAuthentication, ClientAuthentication.Sasl(new SaslAuthProps {\n Scram = true\n}));",
457
+ "version": "1"
458
+ },
459
+ "java": {
460
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = new cluster(this, \"cluster\", Map.of(\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.sasl(SaslAuthProps.builder()\n .scram(true)\n .build()));",
461
+ "version": "1"
462
+ },
463
+ "$": {
464
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
465
+ "version": "0"
466
+ }
467
+ },
468
+ "location": {
469
+ "api": {
470
+ "api": "type",
471
+ "fqn": "@aws-cdk/aws-msk-alpha.ClientAuthentication"
472
+ },
473
+ "field": {
474
+ "field": "example"
475
+ }
476
+ },
477
+ "didCompile": false,
478
+ "fqnsReferenced": [
479
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
480
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#sasl",
481
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
482
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
483
+ "@aws-cdk/aws-msk-alpha.SaslAuthProps"
484
+ ],
485
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
486
+ "syntaxKindCounter": {
487
+ "10": 2,
488
+ "75": 14,
489
+ "104": 1,
490
+ "106": 1,
491
+ "193": 3,
492
+ "194": 5,
493
+ "196": 1,
494
+ "197": 1,
495
+ "225": 1,
496
+ "242": 1,
497
+ "243": 1,
498
+ "254": 1,
499
+ "255": 1,
500
+ "256": 1,
501
+ "281": 2,
502
+ "283": 1,
503
+ "290": 1
504
+ },
505
+ "fqnsFingerprint": "b8f845b2f995b6cc88c24714b4737253b36f57c382e126167e1921b59ba48d10"
506
+ },
507
+ "cff3b29e78a8161df7384a9caa5d2f6e46259df777c4d149896d9d7bdeafcbb6": {
508
+ "translations": {
509
+ "python": {
510
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = msk.cluster(self, \"cluster\", {\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n}, {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.sasl(\n scram=True\n))",
511
+ "version": "1"
512
+ },
513
+ "csharp": {
514
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"cluster\", new Struct {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Struct {\n ClientBroker = ClientBrokerEncryption.TLS\n}, clientAuthentication, ClientAuthentication.Sasl(new SaslAuthProps {\n Scram = true\n}));",
515
+ "version": "1"
516
+ },
517
+ "java": {
518
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = new cluster(this, \"cluster\", Map.of(\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.sasl(SaslAuthProps.builder()\n .scram(true)\n .build()));",
519
+ "version": "1"
520
+ },
521
+ "$": {
522
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
523
+ "version": "0"
524
+ }
525
+ },
526
+ "location": {
527
+ "api": {
528
+ "api": "type",
529
+ "fqn": "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption"
530
+ },
531
+ "field": {
532
+ "field": "example"
533
+ }
534
+ },
535
+ "didCompile": false,
536
+ "fqnsReferenced": [
537
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
538
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#sasl",
539
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
540
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
541
+ "@aws-cdk/aws-msk-alpha.SaslAuthProps"
542
+ ],
543
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
544
+ "syntaxKindCounter": {
545
+ "10": 2,
546
+ "75": 14,
547
+ "104": 1,
548
+ "106": 1,
549
+ "193": 3,
550
+ "194": 5,
551
+ "196": 1,
552
+ "197": 1,
553
+ "225": 1,
554
+ "242": 1,
555
+ "243": 1,
556
+ "254": 1,
557
+ "255": 1,
558
+ "256": 1,
559
+ "281": 2,
560
+ "283": 1,
561
+ "290": 1
562
+ },
563
+ "fqnsFingerprint": "b8f845b2f995b6cc88c24714b4737253b36f57c382e126167e1921b59ba48d10"
564
+ },
565
+ "4fd574236b78643ddafe0c80388ea1a18b3c391617fcbbd998ac54cf88bd9825": {
566
+ "translations": {
567
+ "python": {
568
+ "source": "import aws_cdk.aws_msk_alpha as msk\nimport aws_cdk.aws_ec2 as ec2\n\ncluster = msk.Cluster(self, \"Cluster\", ...)\n\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181))\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094))",
569
+ "version": "1"
570
+ },
571
+ "csharp": {
572
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nCluster cluster = new Cluster(this, \"Cluster\", new ClusterProps { ... });\n\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(2181));\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(9094));",
573
+ "version": "1"
574
+ },
575
+ "java": {
576
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nCluster cluster = Cluster.Builder.create(this, \"Cluster\")....build();\n\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(2181));\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(9094));",
577
+ "version": "1"
578
+ },
579
+ "$": {
580
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
581
+ "version": "0"
582
+ }
583
+ },
584
+ "location": {
585
+ "api": {
586
+ "api": "type",
587
+ "fqn": "@aws-cdk/aws-msk-alpha.Cluster"
588
+ },
589
+ "field": {
590
+ "field": "example"
591
+ }
592
+ },
593
+ "didCompile": false,
594
+ "fqnsReferenced": [
595
+ "@aws-cdk/aws-msk-alpha.Cluster",
596
+ "@aws-cdk/aws-msk-alpha.ClusterProps",
597
+ "aws-cdk-lib.aws_ec2.Connections#allowFrom",
598
+ "aws-cdk-lib.aws_ec2.IConnectable",
599
+ "aws-cdk-lib.aws_ec2.Peer",
600
+ "aws-cdk-lib.aws_ec2.Peer#ipv4",
601
+ "aws-cdk-lib.aws_ec2.Port",
602
+ "aws-cdk-lib.aws_ec2.Port#tcp"
603
+ ],
604
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
605
+ "syntaxKindCounter": {
606
+ "8": 2,
607
+ "10": 5,
608
+ "75": 24,
609
+ "104": 1,
610
+ "193": 1,
611
+ "194": 13,
612
+ "196": 6,
613
+ "197": 1,
614
+ "225": 1,
615
+ "226": 2,
616
+ "242": 1,
617
+ "243": 1,
618
+ "254": 2,
619
+ "255": 2,
620
+ "256": 2,
621
+ "283": 1,
622
+ "290": 1
623
+ },
624
+ "fqnsFingerprint": "bf0d508ebea6390843197de7a686477535e228fbb28ee3af8ff2a31565fa7465"
625
+ },
626
+ "8888290d454b2f1c84cb95896d64bf084cbbc6f841bab461b3f4b81a18ddc6f9": {
627
+ "translations": {
628
+ "python": {
629
+ "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_msk_alpha as msk_alpha\n\ncluster_configuration_info = msk_alpha.ClusterConfigurationInfo(\n arn=\"arn\",\n revision=123\n)",
630
+ "version": "1"
631
+ },
632
+ "csharp": {
633
+ "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.MSK.Alpha;\n\nClusterConfigurationInfo clusterConfigurationInfo = new ClusterConfigurationInfo {\n Arn = \"arn\",\n Revision = 123\n};",
634
+ "version": "1"
635
+ },
636
+ "java": {
637
+ "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.msk.alpha.*;\n\nClusterConfigurationInfo clusterConfigurationInfo = ClusterConfigurationInfo.builder()\n .arn(\"arn\")\n .revision(123)\n .build();",
638
+ "version": "1"
639
+ },
640
+ "$": {
641
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nconst clusterConfigurationInfo: msk_alpha.ClusterConfigurationInfo = {\n arn: 'arn',\n revision: 123,\n};",
642
+ "version": "0"
643
+ }
644
+ },
645
+ "location": {
646
+ "api": {
647
+ "api": "type",
648
+ "fqn": "@aws-cdk/aws-msk-alpha.ClusterConfigurationInfo"
649
+ },
650
+ "field": {
651
+ "field": "example"
652
+ }
653
+ },
654
+ "didCompile": true,
655
+ "fqnsReferenced": [
656
+ "@aws-cdk/aws-msk-alpha.ClusterConfigurationInfo"
657
+ ],
658
+ "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 msk_alpha from '@aws-cdk/aws-msk-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 clusterConfigurationInfo: msk_alpha.ClusterConfigurationInfo = {\n arn: 'arn',\n revision: 123,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
659
+ "syntaxKindCounter": {
660
+ "8": 1,
661
+ "10": 2,
662
+ "75": 6,
663
+ "153": 1,
664
+ "169": 1,
665
+ "193": 1,
666
+ "225": 1,
667
+ "242": 1,
668
+ "243": 1,
669
+ "254": 1,
670
+ "255": 1,
671
+ "256": 1,
672
+ "281": 2,
673
+ "290": 1
674
+ },
675
+ "fqnsFingerprint": "4bce1b7851c46792b1be92271a292a0647cf08ab1a9ff992cae1f2767916d745"
676
+ },
677
+ "d3f01eb62169205f4e56402730360a1441a771303522aceacabd41e9d47b2106": {
678
+ "translations": {
679
+ "python": {
680
+ "source": "import aws_cdk.aws_msk_alpha as msk\nimport aws_cdk.aws_ec2 as ec2\n\ncluster = msk.Cluster(self, \"Cluster\", ...)\n\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181))\ncluster.connections.allow_from(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094))",
681
+ "version": "1"
682
+ },
683
+ "csharp": {
684
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\nusing Amazon.CDK.AWS.EC2;\n\nCluster cluster = new Cluster(this, \"Cluster\", new ClusterProps { ... });\n\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(2181));\ncluster.Connections.AllowFrom(Peer.Ipv4(\"1.2.3.4/8\"), Port.Tcp(9094));",
685
+ "version": "1"
686
+ },
687
+ "java": {
688
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\nimport software.amazon.awscdk.services.ec2.*;\n\nCluster cluster = Cluster.Builder.create(this, \"Cluster\")....build();\n\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(2181));\ncluster.connections.allowFrom(Peer.ipv4(\"1.2.3.4/8\"), Port.tcp(9094));",
689
+ "version": "1"
690
+ },
691
+ "$": {
692
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
693
+ "version": "0"
694
+ }
695
+ },
696
+ "location": {
697
+ "api": {
698
+ "api": "type",
699
+ "fqn": "@aws-cdk/aws-msk-alpha.ClusterProps"
700
+ },
701
+ "field": {
702
+ "field": "example"
703
+ }
704
+ },
705
+ "didCompile": false,
706
+ "fqnsReferenced": [
707
+ "@aws-cdk/aws-msk-alpha.Cluster",
708
+ "@aws-cdk/aws-msk-alpha.ClusterProps",
709
+ "aws-cdk-lib.aws_ec2.Connections#allowFrom",
710
+ "aws-cdk-lib.aws_ec2.IConnectable",
711
+ "aws-cdk-lib.aws_ec2.Peer",
712
+ "aws-cdk-lib.aws_ec2.Peer#ipv4",
713
+ "aws-cdk-lib.aws_ec2.Port",
714
+ "aws-cdk-lib.aws_ec2.Port#tcp"
715
+ ],
716
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as ec2 from \"aws-cdk-lib/aws-ec2\"\n\nconst cluster = new msk.Cluster(this, \"Cluster\", {...})\n\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(2181)\n)\ncluster.connections.allowFrom(\n ec2.Peer.ipv4(\"1.2.3.4/8\"),\n ec2.Port.tcp(9094)\n)",
717
+ "syntaxKindCounter": {
718
+ "8": 2,
719
+ "10": 5,
720
+ "75": 24,
721
+ "104": 1,
722
+ "193": 1,
723
+ "194": 13,
724
+ "196": 6,
725
+ "197": 1,
726
+ "225": 1,
727
+ "226": 2,
728
+ "242": 1,
729
+ "243": 1,
730
+ "254": 2,
731
+ "255": 2,
732
+ "256": 2,
733
+ "283": 1,
734
+ "290": 1
735
+ },
736
+ "fqnsFingerprint": "bf0d508ebea6390843197de7a686477535e228fbb28ee3af8ff2a31565fa7465"
737
+ },
738
+ "c6e128aabb3ac9937e6654bd018a9974402c4be71960628c3d254bc788c85dd6": {
739
+ "translations": {
740
+ "python": {
741
+ "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_msk_alpha as msk_alpha\nfrom aws_cdk import aws_kms as kms\n\n# key is of type Key\n\nebs_storage_info = msk_alpha.EbsStorageInfo(\n encryption_key=key,\n volume_size=123\n)",
742
+ "version": "1"
743
+ },
744
+ "csharp": {
745
+ "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.MSK.Alpha;\nusing Amazon.CDK.AWS.KMS;\n\nKey key;\n\nEbsStorageInfo ebsStorageInfo = new EbsStorageInfo {\n EncryptionKey = key,\n VolumeSize = 123\n};",
746
+ "version": "1"
747
+ },
748
+ "java": {
749
+ "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.msk.alpha.*;\nimport software.amazon.awscdk.services.kms.*;\n\nKey key;\n\nEbsStorageInfo ebsStorageInfo = EbsStorageInfo.builder()\n .encryptionKey(key)\n .volumeSize(123)\n .build();",
750
+ "version": "1"
751
+ },
752
+ "$": {
753
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_kms as kms } from 'aws-cdk-lib';\n\ndeclare const key: kms.Key;\nconst ebsStorageInfo: msk_alpha.EbsStorageInfo = {\n encryptionKey: key,\n volumeSize: 123,\n};",
754
+ "version": "0"
755
+ }
756
+ },
757
+ "location": {
758
+ "api": {
759
+ "api": "type",
760
+ "fqn": "@aws-cdk/aws-msk-alpha.EbsStorageInfo"
761
+ },
762
+ "field": {
763
+ "field": "example"
764
+ }
765
+ },
766
+ "didCompile": true,
767
+ "fqnsReferenced": [
768
+ "@aws-cdk/aws-msk-alpha.EbsStorageInfo",
769
+ "aws-cdk-lib.aws_kms.IKey"
770
+ ],
771
+ "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 msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_kms as kms } from 'aws-cdk-lib';\n\ndeclare const key: kms.Key;\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 ebsStorageInfo: msk_alpha.EbsStorageInfo = {\n encryptionKey: key,\n volumeSize: 123,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
772
+ "syntaxKindCounter": {
773
+ "8": 1,
774
+ "10": 2,
775
+ "75": 12,
776
+ "130": 1,
777
+ "153": 2,
778
+ "169": 2,
779
+ "193": 1,
780
+ "225": 2,
781
+ "242": 2,
782
+ "243": 2,
783
+ "254": 2,
784
+ "255": 2,
785
+ "256": 1,
786
+ "257": 1,
787
+ "258": 1,
788
+ "281": 2,
789
+ "290": 1
790
+ },
791
+ "fqnsFingerprint": "563511510522f00600991e4e86fe736217b763b35143741abe2378aa68ec6a02"
792
+ },
793
+ "3bc34cc6d7ebac12150bfd3b150faf00d55037b1debfb3d0941220be889b0707": {
794
+ "translations": {
795
+ "python": {
796
+ "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_msk_alpha as msk_alpha\n\nencryption_in_transit_config = msk_alpha.EncryptionInTransitConfig(\n client_broker=msk_alpha.ClientBrokerEncryption.TLS,\n enable_in_cluster=False\n)",
797
+ "version": "1"
798
+ },
799
+ "csharp": {
800
+ "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.MSK.Alpha;\n\nEncryptionInTransitConfig encryptionInTransitConfig = new EncryptionInTransitConfig {\n ClientBroker = ClientBrokerEncryption.TLS,\n EnableInCluster = false\n};",
801
+ "version": "1"
802
+ },
803
+ "java": {
804
+ "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.msk.alpha.*;\n\nEncryptionInTransitConfig encryptionInTransitConfig = EncryptionInTransitConfig.builder()\n .clientBroker(ClientBrokerEncryption.TLS)\n .enableInCluster(false)\n .build();",
805
+ "version": "1"
806
+ },
807
+ "$": {
808
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nconst encryptionInTransitConfig: msk_alpha.EncryptionInTransitConfig = {\n clientBroker: msk_alpha.ClientBrokerEncryption.TLS,\n enableInCluster: false,\n};",
809
+ "version": "0"
810
+ }
811
+ },
812
+ "location": {
813
+ "api": {
814
+ "api": "type",
815
+ "fqn": "@aws-cdk/aws-msk-alpha.EncryptionInTransitConfig"
816
+ },
817
+ "field": {
818
+ "field": "example"
819
+ }
820
+ },
821
+ "didCompile": true,
822
+ "fqnsReferenced": [
823
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
824
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
825
+ "@aws-cdk/aws-msk-alpha.EncryptionInTransitConfig"
826
+ ],
827
+ "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 msk_alpha from '@aws-cdk/aws-msk-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 encryptionInTransitConfig: msk_alpha.EncryptionInTransitConfig = {\n clientBroker: msk_alpha.ClientBrokerEncryption.TLS,\n enableInCluster: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
828
+ "syntaxKindCounter": {
829
+ "10": 1,
830
+ "75": 9,
831
+ "91": 1,
832
+ "153": 1,
833
+ "169": 1,
834
+ "193": 1,
835
+ "194": 2,
836
+ "225": 1,
837
+ "242": 1,
838
+ "243": 1,
839
+ "254": 1,
840
+ "255": 1,
841
+ "256": 1,
842
+ "281": 2,
843
+ "290": 1
844
+ },
845
+ "fqnsFingerprint": "a54408a903cd322fccbd719727365154300116634139ef2ef9ec85b26c490f65"
846
+ },
847
+ "0ad6bfb0f65b51bb3c39ec12fec3fe8e1ba1e1b0bd508166193c12f2124caea6": {
848
+ "translations": {
849
+ "python": {
850
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = Cluster(self, \"Cluster\",\n kafka_version=msk.KafkaVersion.V2_8_1,\n vpc=vpc\n)",
851
+ "version": "1"
852
+ },
853
+ "csharp": {
854
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"Cluster\", new Struct {\n KafkaVersion = KafkaVersion.V2_8_1,\n Vpc = vpc\n});",
855
+ "version": "1"
856
+ },
857
+ "java": {
858
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = Cluster.Builder.create(this, \"Cluster\")\n .kafkaVersion(KafkaVersion.V2_8_1)\n .vpc(vpc)\n .build();",
859
+ "version": "1"
860
+ },
861
+ "$": {
862
+ "source": "import * as msk from '@aws-cdk/aws-msk-alpha';\n\nconst cluster = new Cluster(this, 'Cluster', {\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});",
863
+ "version": "0"
864
+ }
865
+ },
866
+ "location": {
867
+ "api": {
868
+ "api": "type",
869
+ "fqn": "@aws-cdk/aws-msk-alpha.KafkaVersion"
870
+ },
871
+ "field": {
872
+ "field": "example"
873
+ }
874
+ },
875
+ "didCompile": false,
876
+ "fqnsReferenced": [
877
+ "@aws-cdk/aws-msk-alpha.KafkaVersion",
878
+ "@aws-cdk/aws-msk-alpha.KafkaVersion#V2_8_1"
879
+ ],
880
+ "fullSource": "import * as msk from '@aws-cdk/aws-msk-alpha';\n\nconst cluster = new Cluster(this, 'Cluster', {\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});",
881
+ "syntaxKindCounter": {
882
+ "10": 2,
883
+ "75": 8,
884
+ "104": 1,
885
+ "193": 1,
886
+ "194": 2,
887
+ "197": 1,
888
+ "225": 1,
889
+ "242": 1,
890
+ "243": 1,
891
+ "254": 1,
892
+ "255": 1,
893
+ "256": 1,
894
+ "281": 1,
895
+ "282": 1,
896
+ "290": 1
897
+ },
898
+ "fqnsFingerprint": "37bac76708249e0cf3ed17b3fd9143d654e8f552c3ad95835955d43ba1556dab"
899
+ },
900
+ "5410896da3de0d4f9bec616d980ea951f621e4f32309a422fda56dbe6d125977": {
901
+ "translations": {
902
+ "python": {
903
+ "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_msk_alpha as msk_alpha\n\nmonitoring_configuration = msk_alpha.MonitoringConfiguration(\n cluster_monitoring_level=msk_alpha.ClusterMonitoringLevel.DEFAULT,\n enable_prometheus_jmx_exporter=False,\n enable_prometheus_node_exporter=False\n)",
904
+ "version": "1"
905
+ },
906
+ "csharp": {
907
+ "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.MSK.Alpha;\n\nMonitoringConfiguration monitoringConfiguration = new MonitoringConfiguration {\n ClusterMonitoringLevel = ClusterMonitoringLevel.DEFAULT,\n EnablePrometheusJmxExporter = false,\n EnablePrometheusNodeExporter = false\n};",
908
+ "version": "1"
909
+ },
910
+ "java": {
911
+ "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.msk.alpha.*;\n\nMonitoringConfiguration monitoringConfiguration = MonitoringConfiguration.builder()\n .clusterMonitoringLevel(ClusterMonitoringLevel.DEFAULT)\n .enablePrometheusJmxExporter(false)\n .enablePrometheusNodeExporter(false)\n .build();",
912
+ "version": "1"
913
+ },
914
+ "$": {
915
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nconst monitoringConfiguration: msk_alpha.MonitoringConfiguration = {\n clusterMonitoringLevel: msk_alpha.ClusterMonitoringLevel.DEFAULT,\n enablePrometheusJmxExporter: false,\n enablePrometheusNodeExporter: false,\n};",
916
+ "version": "0"
917
+ }
918
+ },
919
+ "location": {
920
+ "api": {
921
+ "api": "type",
922
+ "fqn": "@aws-cdk/aws-msk-alpha.MonitoringConfiguration"
923
+ },
924
+ "field": {
925
+ "field": "example"
926
+ }
927
+ },
928
+ "didCompile": true,
929
+ "fqnsReferenced": [
930
+ "@aws-cdk/aws-msk-alpha.ClusterMonitoringLevel",
931
+ "@aws-cdk/aws-msk-alpha.ClusterMonitoringLevel#DEFAULT",
932
+ "@aws-cdk/aws-msk-alpha.MonitoringConfiguration"
933
+ ],
934
+ "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 msk_alpha from '@aws-cdk/aws-msk-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 monitoringConfiguration: msk_alpha.MonitoringConfiguration = {\n clusterMonitoringLevel: msk_alpha.ClusterMonitoringLevel.DEFAULT,\n enablePrometheusJmxExporter: false,\n enablePrometheusNodeExporter: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
935
+ "syntaxKindCounter": {
936
+ "10": 1,
937
+ "75": 10,
938
+ "91": 2,
939
+ "153": 1,
940
+ "169": 1,
941
+ "193": 1,
942
+ "194": 2,
943
+ "225": 1,
944
+ "242": 1,
945
+ "243": 1,
946
+ "254": 1,
947
+ "255": 1,
948
+ "256": 1,
949
+ "281": 3,
950
+ "290": 1
951
+ },
952
+ "fqnsFingerprint": "3bca81424de8d7cc1f47d1cce71a658d46254ac4f690ef598343fedd3284ac54"
953
+ },
954
+ "dda542434653872c193e06489d396f34226d26f4df7f5a15d2bc2faec4bcf5c2": {
955
+ "translations": {
956
+ "python": {
957
+ "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_msk_alpha as msk_alpha\nfrom aws_cdk import aws_s3 as s3\n\n# bucket is of type Bucket\n\ns3_logging_configuration = msk_alpha.S3LoggingConfiguration(\n bucket=bucket,\n\n # the properties below are optional\n prefix=\"prefix\"\n)",
958
+ "version": "1"
959
+ },
960
+ "csharp": {
961
+ "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.MSK.Alpha;\nusing Amazon.CDK.AWS.S3;\n\nBucket bucket;\n\nS3LoggingConfiguration s3LoggingConfiguration = new S3LoggingConfiguration {\n Bucket = bucket,\n\n // the properties below are optional\n Prefix = \"prefix\"\n};",
962
+ "version": "1"
963
+ },
964
+ "java": {
965
+ "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.msk.alpha.*;\nimport software.amazon.awscdk.services.s3.*;\n\nBucket bucket;\n\nS3LoggingConfiguration s3LoggingConfiguration = S3LoggingConfiguration.builder()\n .bucket(bucket)\n\n // the properties below are optional\n .prefix(\"prefix\")\n .build();",
966
+ "version": "1"
967
+ },
968
+ "$": {
969
+ "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\nconst s3LoggingConfiguration: msk_alpha.S3LoggingConfiguration = {\n bucket: bucket,\n\n // the properties below are optional\n prefix: 'prefix',\n};",
970
+ "version": "0"
971
+ }
972
+ },
973
+ "location": {
974
+ "api": {
975
+ "api": "type",
976
+ "fqn": "@aws-cdk/aws-msk-alpha.S3LoggingConfiguration"
977
+ },
978
+ "field": {
979
+ "field": "example"
980
+ }
981
+ },
982
+ "didCompile": true,
983
+ "fqnsReferenced": [
984
+ "@aws-cdk/aws-msk-alpha.S3LoggingConfiguration",
985
+ "aws-cdk-lib.aws_s3.IBucket"
986
+ ],
987
+ "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 msk_alpha from '@aws-cdk/aws-msk-alpha';\nimport { aws_s3 as s3 } from 'aws-cdk-lib';\n\ndeclare const bucket: s3.Bucket;\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 s3LoggingConfiguration: msk_alpha.S3LoggingConfiguration = {\n bucket: bucket,\n\n // the properties below are optional\n prefix: 'prefix',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
988
+ "syntaxKindCounter": {
989
+ "10": 3,
990
+ "75": 12,
991
+ "130": 1,
992
+ "153": 2,
993
+ "169": 2,
994
+ "193": 1,
995
+ "225": 2,
996
+ "242": 2,
997
+ "243": 2,
998
+ "254": 2,
999
+ "255": 2,
1000
+ "256": 1,
1001
+ "257": 1,
1002
+ "258": 1,
1003
+ "281": 2,
1004
+ "290": 1
1005
+ },
1006
+ "fqnsFingerprint": "b02ed319f415dd6b60a583a7c144765d3d55f4d26cd03a899acd507bd79d38df"
1007
+ },
1008
+ "d68e073610bf9fd607121c4de45d0a9eefee66b21670bbc4644342c02bd7395d": {
1009
+ "translations": {
1010
+ "python": {
1011
+ "source": "import aws_cdk.aws_msk_alpha as msk\n\ncluster = msk.cluster(self, \"cluster\", {\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n}, {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.sasl(\n scram=True\n))",
1012
+ "version": "1"
1013
+ },
1014
+ "csharp": {
1015
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\n\nvar cluster = new Cluster(this, \"cluster\", new Struct {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Struct {\n ClientBroker = ClientBrokerEncryption.TLS\n}, clientAuthentication, ClientAuthentication.Sasl(new SaslAuthProps {\n Scram = true\n}));",
1016
+ "version": "1"
1017
+ },
1018
+ "java": {
1019
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\n\nObject cluster = new cluster(this, \"cluster\", Map.of(\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.sasl(SaslAuthProps.builder()\n .scram(true)\n .build()));",
1020
+ "version": "1"
1021
+ },
1022
+ "$": {
1023
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
1024
+ "version": "0"
1025
+ }
1026
+ },
1027
+ "location": {
1028
+ "api": {
1029
+ "api": "type",
1030
+ "fqn": "@aws-cdk/aws-msk-alpha.SaslAuthProps"
1031
+ },
1032
+ "field": {
1033
+ "field": "example"
1034
+ }
1035
+ },
1036
+ "didCompile": false,
1037
+ "fqnsReferenced": [
1038
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
1039
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#sasl",
1040
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
1041
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
1042
+ "@aws-cdk/aws-msk-alpha.SaslAuthProps"
1043
+ ],
1044
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\n\nconst cluster = new msk.cluster(this, \"cluster\", {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n})",
1045
+ "syntaxKindCounter": {
1046
+ "10": 2,
1047
+ "75": 14,
1048
+ "104": 1,
1049
+ "106": 1,
1050
+ "193": 3,
1051
+ "194": 5,
1052
+ "196": 1,
1053
+ "197": 1,
1054
+ "225": 1,
1055
+ "242": 1,
1056
+ "243": 1,
1057
+ "254": 1,
1058
+ "255": 1,
1059
+ "256": 1,
1060
+ "281": 2,
1061
+ "283": 1,
1062
+ "290": 1
1063
+ },
1064
+ "fqnsFingerprint": "b8f845b2f995b6cc88c24714b4737253b36f57c382e126167e1921b59ba48d10"
1065
+ },
1066
+ "d3d0ae1b223997ca0853812e111fa44cbc96c58d2b12626416a77ce5c910627d": {
1067
+ "translations": {
1068
+ "python": {
1069
+ "source": "import aws_cdk.aws_msk_alpha as msk\nimport aws_cdk.aws_acmpca as acmpca\n\ncluster = msk.Cluster(self, \"Cluster\", msk.ClusterProps(\n (SpreadAssignment ...\n encryptionInTransit\n encryption_in_transit)\n), {\n \"client_broker\": msk.ClientBrokerEncryption.TLS\n}, client_authentication, msk.ClientAuthentication.tls(\n certificate_authorities=[\n acmpca.CertificateAuthority.from_certificate_authority_arn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\")\n ]\n))",
1070
+ "version": "1"
1071
+ },
1072
+ "csharp": {
1073
+ "source": "using Amazon.CDK.AWS.MSK.Alpha;\nusing Amazon.CDK.AWS.ACMPCA;\n\nCluster cluster = new Cluster(this, \"Cluster\", new ClusterProps {\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n}, new Dictionary<string, ClientBrokerEncryption> {\n { \"clientBroker\", ClientBrokerEncryption.TLS }\n}, clientAuthentication, ClientAuthentication.Tls(new TlsAuthProps {\n CertificateAuthorities = new [] { CertificateAuthority.FromCertificateAuthorityArn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\") }\n}));",
1074
+ "version": "1"
1075
+ },
1076
+ "java": {
1077
+ "source": "import software.amazon.awscdk.services.msk.alpha.*;\nimport software.amazon.awscdk.services.acmpca.*;\n\nCluster cluster = new Cluster(this, \"Cluster\", ClusterProps.builder()\n (SpreadAssignment ...\n encryptionInTransit\n encryptionInTransit)\n .build(), Map.of(\n \"clientBroker\", ClientBrokerEncryption.TLS), clientAuthentication, ClientAuthentication.tls(TlsAuthProps.builder()\n .certificateAuthorities(List.of(CertificateAuthority.fromCertificateAuthorityArn(stack, \"CertificateAuthority\", \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\")))\n .build()));",
1078
+ "version": "1"
1079
+ },
1080
+ "$": {
1081
+ "source": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as acmpca from \"aws-cdk-lib/aws-acmpca\"\n\nconst cluster = new msk.Cluster(this, 'Cluster', {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n stack,\n \"CertificateAuthority\",\n \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\"\n ),\n ],\n }),\n });\n});",
1082
+ "version": "0"
1083
+ }
1084
+ },
1085
+ "location": {
1086
+ "api": {
1087
+ "api": "type",
1088
+ "fqn": "@aws-cdk/aws-msk-alpha.TlsAuthProps"
1089
+ },
1090
+ "field": {
1091
+ "field": "example"
1092
+ }
1093
+ },
1094
+ "didCompile": false,
1095
+ "fqnsReferenced": [
1096
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication",
1097
+ "@aws-cdk/aws-msk-alpha.ClientAuthentication#tls",
1098
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption",
1099
+ "@aws-cdk/aws-msk-alpha.ClientBrokerEncryption#TLS",
1100
+ "@aws-cdk/aws-msk-alpha.Cluster",
1101
+ "@aws-cdk/aws-msk-alpha.ClusterProps",
1102
+ "@aws-cdk/aws-msk-alpha.TlsAuthProps",
1103
+ "aws-cdk-lib.aws_acmpca.CertificateAuthority",
1104
+ "aws-cdk-lib.aws_acmpca.CertificateAuthority#fromCertificateAuthorityArn"
1105
+ ],
1106
+ "fullSource": "import * as msk from \"@aws-cdk/aws-msk-alpha\"\nimport * as acmpca from \"aws-cdk-lib/aws-acmpca\"\n\nconst cluster = new msk.Cluster(this, 'Cluster', {\n ...\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n stack,\n \"CertificateAuthority\",\n \"arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111\"\n ),\n ],\n }),\n });\n});",
1107
+ "syntaxKindCounter": {
1108
+ "10": 5,
1109
+ "75": 19,
1110
+ "104": 1,
1111
+ "192": 1,
1112
+ "193": 3,
1113
+ "194": 7,
1114
+ "196": 2,
1115
+ "197": 1,
1116
+ "224": 2,
1117
+ "225": 1,
1118
+ "242": 1,
1119
+ "243": 1,
1120
+ "254": 2,
1121
+ "255": 2,
1122
+ "256": 2,
1123
+ "281": 2,
1124
+ "283": 1,
1125
+ "290": 1
1126
+ },
1127
+ "fqnsFingerprint": "1fbbe37159466c82ca72068eb7e2348dab8ff47c306f44aa8ed394aadb075065"
1128
+ }
1129
+ }
1130
+ }