@aws-cdk/aws-msk-alpha 2.30.0-alpha.0 → 2.31.2-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.30.0",
11
+ "aws-cdk-lib": "^2.31.2",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -2199,6 +2199,19 @@
2199
2199
  }
2200
2200
  }
2201
2201
  },
2202
+ "aws-cdk-lib.aws_redshiftserverless": {
2203
+ "targets": {
2204
+ "dotnet": {
2205
+ "namespace": "Amazon.CDK.AWS.RedshiftServerless"
2206
+ },
2207
+ "java": {
2208
+ "package": "software.amazon.awscdk.services.redshiftserverless"
2209
+ },
2210
+ "python": {
2211
+ "module": "aws_cdk.aws_redshiftserverless"
2212
+ }
2213
+ }
2214
+ },
2202
2215
  "aws-cdk-lib.aws_refactorspaces": {
2203
2216
  "targets": {
2204
2217
  "dotnet": {
@@ -3033,7 +3046,7 @@
3033
3046
  },
3034
3047
  "name": "@aws-cdk/aws-msk-alpha",
3035
3048
  "readme": {
3036
- "markdown": "# Amazon Managed Streaming for Apache Kafka Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n[Amazon MSK](https://aws.amazon.com/msk/) is a fully managed service that makes it easy for you to build and run applications that use Apache Kafka to process streaming data.\n\nThe following example creates an MSK Cluster.\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});\n```\n\n## Allowing Connections\n\nTo control who can access the Cluster, use the `.connections` attribute. For a list of ports used by MSK, refer to the [MSK documentation](https://docs.aws.amazon.com/msk/latest/developerguide/client-access.html#port-info).\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});\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);\n```\n\n## Cluster Endpoints\n\nYou can use the following attributes to get a list of the Kafka broker or ZooKeeper node endpoints\n\n```ts\ndeclare const cluster: msk.Cluster;\nnew CfnOutput(this, 'BootstrapBrokers', { value: cluster.bootstrapBrokers });\nnew CfnOutput(this, 'BootstrapBrokersTls', { value: cluster.bootstrapBrokersTls });\nnew CfnOutput(this, 'BootstrapBrokersSaslScram', { value: cluster.bootstrapBrokersSaslScram });\nnew CfnOutput(this, 'ZookeeperConnection', { value: cluster.zookeeperConnectionString });\nnew CfnOutput(this, 'ZookeeperConnectionTls', { value: cluster.zookeeperConnectionStringTls });\n```\n\n## Importing an existing Cluster\n\nTo import an existing MSK cluster into your CDK app use the `.fromClusterArn()` method.\n\n```ts\nconst cluster = msk.Cluster.fromClusterArn(this, 'Cluster',\n 'arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1',\n);\n```\n\n## Client Authentication\n\n[MSK supports](https://docs.aws.amazon.com/msk/latest/developerguide/kafka_apis_iam.html) the following authentication mechanisms.\n\n> Only one authentication method can be enabled.\n\n### TLS\n\nTo enable client authentication with TLS set the `certificateAuthorityArns` property to reference your ACM Private CA. [More info on Private CAs.](https://docs.aws.amazon.com/msk/latest/developerguide/msk-authentication.html)\n\n```ts\nimport * as acmpca from 'aws-cdk-lib/aws-acmpca';\n\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n this,\n 'CertificateAuthority',\n 'arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111',\n ),\n ],\n }),\n});\n```\n\n### SASL/SCRAM\n\nEnable client authentication with [SASL/SCRAM](https://docs.aws.amazon.com/msk/latest/developerguide/msk-password.html):\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n});\n```\n\n### SASL/IAM\n\nEnable client authentication with [IAM](https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html):\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n iam: true,\n }),\n});\n```\n"
3049
+ "markdown": "# Amazon Managed Streaming for Apache Kafka Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n![cdk-constructs: Experimental](https://img.shields.io/badge/cdk--constructs-experimental-important.svg?style=for-the-badge)\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n[Amazon MSK](https://aws.amazon.com/msk/) is a fully managed service that makes it easy for you to build and run applications that use Apache Kafka to process streaming data.\n\nThe following example creates an MSK Cluster.\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});\n```\n\n## Allowing Connections\n\nTo control who can access the Cluster, use the `.connections` attribute. For a list of ports used by MSK, refer to the [MSK documentation](https://docs.aws.amazon.com/msk/latest/developerguide/client-access.html#port-info).\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n});\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);\n```\n\n## Cluster Endpoints\n\nYou can use the following attributes to get a list of the Kafka broker or ZooKeeper node endpoints\n\n```ts\ndeclare const cluster: msk.Cluster;\nnew CfnOutput(this, 'BootstrapBrokers', { value: cluster.bootstrapBrokers });\nnew CfnOutput(this, 'BootstrapBrokersTls', { value: cluster.bootstrapBrokersTls });\nnew CfnOutput(this, 'BootstrapBrokersSaslScram', { value: cluster.bootstrapBrokersSaslScram });\nnew CfnOutput(this, 'ZookeeperConnection', { value: cluster.zookeeperConnectionString });\nnew CfnOutput(this, 'ZookeeperConnectionTls', { value: cluster.zookeeperConnectionStringTls });\n```\n\n## Importing an existing Cluster\n\nTo import an existing MSK cluster into your CDK app use the `.fromClusterArn()` method.\n\n```ts\nconst cluster = msk.Cluster.fromClusterArn(this, 'Cluster',\n 'arn:aws:kafka:us-west-2:1234567890:cluster/a-cluster/11111111-1111-1111-1111-111111111111-1',\n);\n```\n\n## Client Authentication\n\n[MSK supports](https://docs.aws.amazon.com/msk/latest/developerguide/kafka_apis_iam.html) the following authentication mechanisms.\n\n> Only one authentication method can be enabled.\n\n### TLS\n\nTo enable client authentication with TLS set the `certificateAuthorityArns` property to reference your ACM Private CA. [More info on Private CAs.](https://docs.aws.amazon.com/msk/latest/developerguide/msk-authentication.html)\n\n```ts\nimport * as acmpca from 'aws-cdk-lib/aws-acmpca';\n\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'Cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.tls({\n certificateAuthorities: [\n acmpca.CertificateAuthority.fromCertificateAuthorityArn(\n this,\n 'CertificateAuthority',\n 'arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111',\n ),\n ],\n }),\n});\n```\n\n### SASL/SCRAM\n\nEnable client authentication with [SASL/SCRAM](https://docs.aws.amazon.com/msk/latest/developerguide/msk-password.html):\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n scram: true,\n }),\n});\n```\n\n### SASL/IAM\n\nEnable client authentication with [IAM](https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html):\n\n```ts\ndeclare const vpc: ec2.Vpc;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n encryptionInTransit: {\n clientBroker: msk.ClientBrokerEncryption.TLS,\n },\n clientAuthentication: msk.ClientAuthentication.sasl({\n iam: true,\n }),\n});\n```\n\n## Logging\n\nYou can deliver Apache Kafka broker logs to one or more of the following destination types:\nAmazon CloudWatch Logs, Amazon S3, Amazon Kinesis Data Firehose.\n\nTo configure logs to be sent to an S3 bucket, provide a bucket in the `logging` config.\n\n```ts\ndeclare const vpc: ec2.Vpc;\ndeclare const bucket: s3.IBucket;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n logging: {\n s3: {\n bucket,\n },\n },\n});\n```\n\nWhen the S3 destination is configured, AWS will automatically create an S3 bucket policy\nthat allows the service to write logs to the bucket. This makes it impossible to later update\nthat bucket policy. To have CDK create the bucket policy so that future updates can be made,\nthe `@aws-cdk/aws-s3:createDefaultLoggingPolicy` [feature flag](https://docs.aws.amazon.com/cdk/v2/guide/featureflags.html) can be used. This can be set\nin the `cdk.json` file.\n\n```json\n{\n \"context\": {\n \"@aws-cdk/aws-s3:createDefaultLoggingPolicy\": true\n }\n}\n```\n\n"
3037
3050
  },
3038
3051
  "repository": {
3039
3052
  "directory": "packages/individual-packages/aws-msk",
@@ -3075,18 +3088,18 @@
3075
3088
  "assembly": "@aws-cdk/aws-msk-alpha",
3076
3089
  "datatype": true,
3077
3090
  "docs": {
3078
- "stability": "experimental",
3079
- "summary": "Configuration details related to broker logs.",
3080
- "example": "// 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};",
3081
3091
  "custom": {
3082
- "exampleMetadata": "fixture=_generated"
3083
- }
3092
+ "exampleMetadata": "infused"
3093
+ },
3094
+ "example": "declare const vpc: ec2.Vpc;\ndeclare const bucket: s3.IBucket;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n logging: {\n s3: {\n bucket,\n },\n },\n});",
3095
+ "stability": "experimental",
3096
+ "summary": "Configuration details related to broker logs."
3084
3097
  },
3085
3098
  "fqn": "@aws-cdk/aws-msk-alpha.BrokerLogging",
3086
3099
  "kind": "interface",
3087
3100
  "locationInModule": {
3088
3101
  "filename": "lib/cluster.ts",
3089
- "line": 230
3102
+ "line": 232
3090
3103
  },
3091
3104
  "name": "BrokerLogging",
3092
3105
  "properties": [
@@ -3100,7 +3113,7 @@
3100
3113
  "immutable": true,
3101
3114
  "locationInModule": {
3102
3115
  "filename": "lib/cluster.ts",
3103
- "line": 242
3116
+ "line": 244
3104
3117
  },
3105
3118
  "name": "cloudwatchLogGroup",
3106
3119
  "optional": true,
@@ -3118,7 +3131,7 @@
3118
3131
  "immutable": true,
3119
3132
  "locationInModule": {
3120
3133
  "filename": "lib/cluster.ts",
3121
- "line": 236
3134
+ "line": 238
3122
3135
  },
3123
3136
  "name": "firehoseDeliveryStreamName",
3124
3137
  "optional": true,
@@ -3136,7 +3149,7 @@
3136
3149
  "immutable": true,
3137
3150
  "locationInModule": {
3138
3151
  "filename": "lib/cluster.ts",
3139
- "line": 248
3152
+ "line": 250
3140
3153
  },
3141
3154
  "name": "s3",
3142
3155
  "optional": true,
@@ -3161,7 +3174,7 @@
3161
3174
  "kind": "class",
3162
3175
  "locationInModule": {
3163
3176
  "filename": "lib/cluster.ts",
3164
- "line": 347
3177
+ "line": 349
3165
3178
  },
3166
3179
  "methods": [
3167
3180
  {
@@ -3171,7 +3184,7 @@
3171
3184
  },
3172
3185
  "locationInModule": {
3173
3186
  "filename": "lib/cluster.ts",
3174
- "line": 351
3187
+ "line": 353
3175
3188
  },
3176
3189
  "name": "sasl",
3177
3190
  "parameters": [
@@ -3196,7 +3209,7 @@
3196
3209
  },
3197
3210
  "locationInModule": {
3198
3211
  "filename": "lib/cluster.ts",
3199
- "line": 358
3212
+ "line": 360
3200
3213
  },
3201
3214
  "name": "tls",
3202
3215
  "parameters": [
@@ -3225,7 +3238,7 @@
3225
3238
  "immutable": true,
3226
3239
  "locationInModule": {
3227
3240
  "filename": "lib/cluster.ts",
3228
- "line": 367
3241
+ "line": 369
3229
3242
  },
3230
3243
  "name": "saslProps",
3231
3244
  "optional": true,
@@ -3241,7 +3254,7 @@
3241
3254
  "immutable": true,
3242
3255
  "locationInModule": {
3243
3256
  "filename": "lib/cluster.ts",
3244
- "line": 368
3257
+ "line": 370
3245
3258
  },
3246
3259
  "name": "tlsProps",
3247
3260
  "optional": true,
@@ -3266,7 +3279,7 @@
3266
3279
  "kind": "enum",
3267
3280
  "locationInModule": {
3268
3281
  "filename": "lib/cluster.ts",
3269
- "line": 270
3282
+ "line": 272
3270
3283
  },
3271
3284
  "members": [
3272
3285
  {
@@ -3313,7 +3326,7 @@
3313
3326
  },
3314
3327
  "locationInModule": {
3315
3328
  "filename": "lib/cluster.ts",
3316
- "line": 401
3329
+ "line": 403
3317
3330
  },
3318
3331
  "parameters": [
3319
3332
  {
@@ -3342,7 +3355,7 @@
3342
3355
  "kind": "class",
3343
3356
  "locationInModule": {
3344
3357
  "filename": "lib/cluster.ts",
3345
- "line": 377
3358
+ "line": 379
3346
3359
  },
3347
3360
  "methods": [
3348
3361
  {
@@ -3352,7 +3365,7 @@
3352
3365
  },
3353
3366
  "locationInModule": {
3354
3367
  "filename": "lib/cluster.ts",
3355
- "line": 381
3368
+ "line": 383
3356
3369
  },
3357
3370
  "name": "fromClusterArn",
3358
3371
  "parameters": [
@@ -3390,7 +3403,7 @@
3390
3403
  },
3391
3404
  "locationInModule": {
3392
3405
  "filename": "lib/cluster.ts",
3393
- "line": 750
3406
+ "line": 801
3394
3407
  },
3395
3408
  "name": "addUser",
3396
3409
  "parameters": [
@@ -3420,7 +3433,7 @@
3420
3433
  "immutable": true,
3421
3434
  "locationInModule": {
3422
3435
  "filename": "lib/cluster.ts",
3423
- "line": 716
3436
+ "line": 767
3424
3437
  },
3425
3438
  "name": "bootstrapBrokers",
3426
3439
  "type": {
@@ -3437,7 +3450,7 @@
3437
3450
  "immutable": true,
3438
3451
  "locationInModule": {
3439
3452
  "filename": "lib/cluster.ts",
3440
- "line": 738
3453
+ "line": 789
3441
3454
  },
3442
3455
  "name": "bootstrapBrokersSaslScram",
3443
3456
  "type": {
@@ -3454,7 +3467,7 @@
3454
3467
  "immutable": true,
3455
3468
  "locationInModule": {
3456
3469
  "filename": "lib/cluster.ts",
3457
- "line": 727
3470
+ "line": 778
3458
3471
  },
3459
3472
  "name": "bootstrapBrokersTls",
3460
3473
  "type": {
@@ -3469,7 +3482,7 @@
3469
3482
  "immutable": true,
3470
3483
  "locationInModule": {
3471
3484
  "filename": "lib/cluster.ts",
3472
- "line": 394
3485
+ "line": 396
3473
3486
  },
3474
3487
  "name": "clusterArn",
3475
3488
  "overrides": "@aws-cdk/aws-msk-alpha.ICluster",
@@ -3485,7 +3498,7 @@
3485
3498
  "immutable": true,
3486
3499
  "locationInModule": {
3487
3500
  "filename": "lib/cluster.ts",
3488
- "line": 395
3501
+ "line": 397
3489
3502
  },
3490
3503
  "name": "clusterName",
3491
3504
  "overrides": "@aws-cdk/aws-msk-alpha.ICluster",
@@ -3501,7 +3514,7 @@
3501
3514
  "immutable": true,
3502
3515
  "locationInModule": {
3503
3516
  "filename": "lib/cluster.ts",
3504
- "line": 44
3517
+ "line": 46
3505
3518
  },
3506
3519
  "name": "connections",
3507
3520
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -3519,7 +3532,7 @@
3519
3532
  "immutable": true,
3520
3533
  "locationInModule": {
3521
3534
  "filename": "lib/cluster.ts",
3522
- "line": 667
3535
+ "line": 718
3523
3536
  },
3524
3537
  "name": "zookeeperConnectionString",
3525
3538
  "type": {
@@ -3536,7 +3549,7 @@
3536
3549
  "immutable": true,
3537
3550
  "locationInModule": {
3538
3551
  "filename": "lib/cluster.ts",
3539
- "line": 678
3552
+ "line": 729
3540
3553
  },
3541
3554
  "name": "zookeeperConnectionStringTls",
3542
3555
  "type": {
@@ -3551,7 +3564,7 @@
3551
3564
  "immutable": true,
3552
3565
  "locationInModule": {
3553
3566
  "filename": "lib/cluster.ts",
3554
- "line": 397
3567
+ "line": 399
3555
3568
  },
3556
3569
  "name": "saslScramAuthenticationKey",
3557
3570
  "optional": true,
@@ -3578,7 +3591,7 @@
3578
3591
  "kind": "interface",
3579
3592
  "locationInModule": {
3580
3593
  "filename": "lib/cluster.ts",
3581
- "line": 165
3594
+ "line": 167
3582
3595
  },
3583
3596
  "name": "ClusterConfigurationInfo",
3584
3597
  "properties": [
@@ -3592,7 +3605,7 @@
3592
3605
  "immutable": true,
3593
3606
  "locationInModule": {
3594
3607
  "filename": "lib/cluster.ts",
3595
- "line": 170
3608
+ "line": 172
3596
3609
  },
3597
3610
  "name": "arn",
3598
3611
  "type": {
@@ -3608,7 +3621,7 @@
3608
3621
  "immutable": true,
3609
3622
  "locationInModule": {
3610
3623
  "filename": "lib/cluster.ts",
3611
- "line": 174
3624
+ "line": 176
3612
3625
  },
3613
3626
  "name": "revision",
3614
3627
  "type": {
@@ -3629,7 +3642,7 @@
3629
3642
  "kind": "enum",
3630
3643
  "locationInModule": {
3631
3644
  "filename": "lib/cluster.ts",
3632
- "line": 182
3645
+ "line": 184
3633
3646
  },
3634
3647
  "members": [
3635
3648
  {
@@ -3679,7 +3692,7 @@
3679
3692
  "kind": "interface",
3680
3693
  "locationInModule": {
3681
3694
  "filename": "lib/cluster.ts",
3682
- "line": 55
3695
+ "line": 57
3683
3696
  },
3684
3697
  "name": "ClusterProps",
3685
3698
  "properties": [
@@ -3692,7 +3705,7 @@
3692
3705
  "immutable": true,
3693
3706
  "locationInModule": {
3694
3707
  "filename": "lib/cluster.ts",
3695
- "line": 59
3708
+ "line": 61
3696
3709
  },
3697
3710
  "name": "clusterName",
3698
3711
  "type": {
@@ -3708,7 +3721,7 @@
3708
3721
  "immutable": true,
3709
3722
  "locationInModule": {
3710
3723
  "filename": "lib/cluster.ts",
3711
- "line": 63
3724
+ "line": 65
3712
3725
  },
3713
3726
  "name": "kafkaVersion",
3714
3727
  "type": {
@@ -3725,7 +3738,7 @@
3725
3738
  "immutable": true,
3726
3739
  "locationInModule": {
3727
3740
  "filename": "lib/cluster.ts",
3728
- "line": 74
3741
+ "line": 76
3729
3742
  },
3730
3743
  "name": "vpc",
3731
3744
  "type": {
@@ -3743,7 +3756,7 @@
3743
3756
  "immutable": true,
3744
3757
  "locationInModule": {
3745
3758
  "filename": "lib/cluster.ts",
3746
- "line": 134
3759
+ "line": 136
3747
3760
  },
3748
3761
  "name": "clientAuthentication",
3749
3762
  "optional": true,
@@ -3761,7 +3774,7 @@
3761
3774
  "immutable": true,
3762
3775
  "locationInModule": {
3763
3776
  "filename": "lib/cluster.ts",
3764
- "line": 109
3777
+ "line": 111
3765
3778
  },
3766
3779
  "name": "configurationInfo",
3767
3780
  "optional": true,
@@ -3779,7 +3792,7 @@
3779
3792
  "immutable": true,
3780
3793
  "locationInModule": {
3781
3794
  "filename": "lib/cluster.ts",
3782
- "line": 103
3795
+ "line": 105
3783
3796
  },
3784
3797
  "name": "ebsStorageInfo",
3785
3798
  "optional": true,
@@ -3797,7 +3810,7 @@
3797
3810
  "immutable": true,
3798
3811
  "locationInModule": {
3799
3812
  "filename": "lib/cluster.ts",
3800
- "line": 127
3813
+ "line": 129
3801
3814
  },
3802
3815
  "name": "encryptionInTransit",
3803
3816
  "optional": true,
@@ -3816,7 +3829,7 @@
3816
3829
  "immutable": true,
3817
3830
  "locationInModule": {
3818
3831
  "filename": "lib/cluster.ts",
3819
- "line": 90
3832
+ "line": 92
3820
3833
  },
3821
3834
  "name": "instanceType",
3822
3835
  "optional": true,
@@ -3834,7 +3847,7 @@
3834
3847
  "immutable": true,
3835
3848
  "locationInModule": {
3836
3849
  "filename": "lib/cluster.ts",
3837
- "line": 121
3850
+ "line": 123
3838
3851
  },
3839
3852
  "name": "logging",
3840
3853
  "optional": true,
@@ -3852,7 +3865,7 @@
3852
3865
  "immutable": true,
3853
3866
  "locationInModule": {
3854
3867
  "filename": "lib/cluster.ts",
3855
- "line": 115
3868
+ "line": 117
3856
3869
  },
3857
3870
  "name": "monitoring",
3858
3871
  "optional": true,
@@ -3870,7 +3883,7 @@
3870
3883
  "immutable": true,
3871
3884
  "locationInModule": {
3872
3885
  "filename": "lib/cluster.ts",
3873
- "line": 69
3886
+ "line": 71
3874
3887
  },
3875
3888
  "name": "numberOfBrokerNodes",
3876
3889
  "optional": true,
@@ -3888,7 +3901,7 @@
3888
3901
  "immutable": true,
3889
3902
  "locationInModule": {
3890
3903
  "filename": "lib/cluster.ts",
3891
- "line": 140
3904
+ "line": 142
3892
3905
  },
3893
3906
  "name": "removalPolicy",
3894
3907
  "optional": true,
@@ -3906,7 +3919,7 @@
3906
3919
  "immutable": true,
3907
3920
  "locationInModule": {
3908
3921
  "filename": "lib/cluster.ts",
3909
- "line": 97
3922
+ "line": 99
3910
3923
  },
3911
3924
  "name": "securityGroups",
3912
3925
  "optional": true,
@@ -3930,7 +3943,7 @@
3930
3943
  "immutable": true,
3931
3944
  "locationInModule": {
3932
3945
  "filename": "lib/cluster.ts",
3933
- "line": 83
3946
+ "line": 85
3934
3947
  },
3935
3948
  "name": "vpcSubnets",
3936
3949
  "optional": true,
@@ -3956,7 +3969,7 @@
3956
3969
  "kind": "interface",
3957
3970
  "locationInModule": {
3958
3971
  "filename": "lib/cluster.ts",
3959
- "line": 146
3972
+ "line": 148
3960
3973
  },
3961
3974
  "name": "EbsStorageInfo",
3962
3975
  "properties": [
@@ -3970,7 +3983,7 @@
3970
3983
  "immutable": true,
3971
3984
  "locationInModule": {
3972
3985
  "filename": "lib/cluster.ts",
3973
- "line": 158
3986
+ "line": 160
3974
3987
  },
3975
3988
  "name": "encryptionKey",
3976
3989
  "optional": true,
@@ -3988,7 +4001,7 @@
3988
4001
  "immutable": true,
3989
4002
  "locationInModule": {
3990
4003
  "filename": "lib/cluster.ts",
3991
- "line": 152
4004
+ "line": 154
3992
4005
  },
3993
4006
  "name": "volumeSize",
3994
4007
  "optional": true,
@@ -4015,7 +4028,7 @@
4015
4028
  "kind": "interface",
4016
4029
  "locationInModule": {
4017
4030
  "filename": "lib/cluster.ts",
4018
- "line": 290
4031
+ "line": 292
4019
4032
  },
4020
4033
  "name": "EncryptionInTransitConfig",
4021
4034
  "properties": [
@@ -4029,7 +4042,7 @@
4029
4042
  "immutable": true,
4030
4043
  "locationInModule": {
4031
4044
  "filename": "lib/cluster.ts",
4032
- "line": 296
4045
+ "line": 298
4033
4046
  },
4034
4047
  "name": "clientBroker",
4035
4048
  "optional": true,
@@ -4047,7 +4060,7 @@
4047
4060
  "immutable": true,
4048
4061
  "locationInModule": {
4049
4062
  "filename": "lib/cluster.ts",
4050
- "line": 302
4063
+ "line": 304
4051
4064
  },
4052
4065
  "name": "enableInCluster",
4053
4066
  "optional": true,
@@ -4072,7 +4085,7 @@
4072
4085
  "kind": "interface",
4073
4086
  "locationInModule": {
4074
4087
  "filename": "lib/cluster.ts",
4075
- "line": 18
4088
+ "line": 20
4076
4089
  },
4077
4090
  "name": "ICluster",
4078
4091
  "properties": [
@@ -4088,7 +4101,7 @@
4088
4101
  "immutable": true,
4089
4102
  "locationInModule": {
4090
4103
  "filename": "lib/cluster.ts",
4091
- "line": 24
4104
+ "line": 26
4092
4105
  },
4093
4106
  "name": "clusterArn",
4094
4107
  "type": {
@@ -4107,7 +4120,7 @@
4107
4120
  "immutable": true,
4108
4121
  "locationInModule": {
4109
4122
  "filename": "lib/cluster.ts",
4110
- "line": 31
4123
+ "line": 33
4111
4124
  },
4112
4125
  "name": "clusterName",
4113
4126
  "type": {
@@ -4436,7 +4449,7 @@
4436
4449
  "kind": "interface",
4437
4450
  "locationInModule": {
4438
4451
  "filename": "lib/cluster.ts",
4439
- "line": 204
4452
+ "line": 206
4440
4453
  },
4441
4454
  "name": "MonitoringConfiguration",
4442
4455
  "properties": [
@@ -4450,7 +4463,7 @@
4450
4463
  "immutable": true,
4451
4464
  "locationInModule": {
4452
4465
  "filename": "lib/cluster.ts",
4453
- "line": 210
4466
+ "line": 212
4454
4467
  },
4455
4468
  "name": "clusterMonitoringLevel",
4456
4469
  "optional": true,
@@ -4468,7 +4481,7 @@
4468
4481
  "immutable": true,
4469
4482
  "locationInModule": {
4470
4483
  "filename": "lib/cluster.ts",
4471
- "line": 216
4484
+ "line": 218
4472
4485
  },
4473
4486
  "name": "enablePrometheusJmxExporter",
4474
4487
  "optional": true,
@@ -4487,7 +4500,7 @@
4487
4500
  "immutable": true,
4488
4501
  "locationInModule": {
4489
4502
  "filename": "lib/cluster.ts",
4490
- "line": 224
4503
+ "line": 226
4491
4504
  },
4492
4505
  "name": "enablePrometheusNodeExporter",
4493
4506
  "optional": true,
@@ -4502,18 +4515,18 @@
4502
4515
  "assembly": "@aws-cdk/aws-msk-alpha",
4503
4516
  "datatype": true,
4504
4517
  "docs": {
4505
- "stability": "experimental",
4506
- "summary": "Details of the Amazon S3 destination for broker logs.",
4507
- "example": "// 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};",
4508
4518
  "custom": {
4509
- "exampleMetadata": "fixture=_generated"
4510
- }
4519
+ "exampleMetadata": "infused"
4520
+ },
4521
+ "example": "declare const vpc: ec2.Vpc;\ndeclare const bucket: s3.IBucket;\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_1,\n vpc,\n logging: {\n s3: {\n bucket,\n },\n },\n});",
4522
+ "stability": "experimental",
4523
+ "summary": "Details of the Amazon S3 destination for broker logs."
4511
4524
  },
4512
4525
  "fqn": "@aws-cdk/aws-msk-alpha.S3LoggingConfiguration",
4513
4526
  "kind": "interface",
4514
4527
  "locationInModule": {
4515
4528
  "filename": "lib/cluster.ts",
4516
- "line": 254
4529
+ "line": 256
4517
4530
  },
4518
4531
  "name": "S3LoggingConfiguration",
4519
4532
  "properties": [
@@ -4526,7 +4539,7 @@
4526
4539
  "immutable": true,
4527
4540
  "locationInModule": {
4528
4541
  "filename": "lib/cluster.ts",
4529
- "line": 258
4542
+ "line": 260
4530
4543
  },
4531
4544
  "name": "bucket",
4532
4545
  "type": {
@@ -4543,7 +4556,7 @@
4543
4556
  "immutable": true,
4544
4557
  "locationInModule": {
4545
4558
  "filename": "lib/cluster.ts",
4546
- "line": 264
4559
+ "line": 266
4547
4560
  },
4548
4561
  "name": "prefix",
4549
4562
  "optional": true,
@@ -4569,7 +4582,7 @@
4569
4582
  "kind": "interface",
4570
4583
  "locationInModule": {
4571
4584
  "filename": "lib/cluster.ts",
4572
- "line": 308
4585
+ "line": 310
4573
4586
  },
4574
4587
  "name": "SaslAuthProps",
4575
4588
  "properties": [
@@ -4583,7 +4596,7 @@
4583
4596
  "immutable": true,
4584
4597
  "locationInModule": {
4585
4598
  "filename": "lib/cluster.ts",
4586
- "line": 320
4599
+ "line": 322
4587
4600
  },
4588
4601
  "name": "iam",
4589
4602
  "optional": true,
@@ -4602,7 +4615,7 @@
4602
4615
  "immutable": true,
4603
4616
  "locationInModule": {
4604
4617
  "filename": "lib/cluster.ts",
4605
- "line": 329
4618
+ "line": 331
4606
4619
  },
4607
4620
  "name": "key",
4608
4621
  "optional": true,
@@ -4620,7 +4633,7 @@
4620
4633
  "immutable": true,
4621
4634
  "locationInModule": {
4622
4635
  "filename": "lib/cluster.ts",
4623
- "line": 314
4636
+ "line": 316
4624
4637
  },
4625
4638
  "name": "scram",
4626
4639
  "optional": true,
@@ -4646,7 +4659,7 @@
4646
4659
  "kind": "interface",
4647
4660
  "locationInModule": {
4648
4661
  "filename": "lib/cluster.ts",
4649
- "line": 335
4662
+ "line": 337
4650
4663
  },
4651
4664
  "name": "TlsAuthProps",
4652
4665
  "properties": [
@@ -4660,7 +4673,7 @@
4660
4673
  "immutable": true,
4661
4674
  "locationInModule": {
4662
4675
  "filename": "lib/cluster.ts",
4663
- "line": 341
4676
+ "line": 343
4664
4677
  },
4665
4678
  "name": "certificateAuthorities",
4666
4679
  "optional": true,
@@ -4677,6 +4690,6 @@
4677
4690
  "symbolId": "lib/cluster:TlsAuthProps"
4678
4691
  }
4679
4692
  },
4680
- "version": "2.30.0-alpha.0",
4693
+ "version": "2.31.2-alpha.0",
4681
4694
  "fingerprint": "**********"
4682
4695
  }