@aws-cdk/aws-msk-alpha 2.112.0-alpha.0 → 2.114.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -8,7 +8,7 @@
8
8
  "url": "https://aws.amazon.com"
9
9
  },
10
10
  "dependencies": {
11
- "aws-cdk-lib": "^2.112.0",
11
+ "aws-cdk-lib": "^2.114.0",
12
12
  "constructs": "^10.0.0"
13
13
  },
14
14
  "dependencyClosure": {
@@ -222,6 +222,8 @@
222
222
  }
223
223
  }
224
224
  },
225
+ "aws-cdk-lib.aws_apigatewayv2_authorizers": {},
226
+ "aws-cdk-lib.aws_apigatewayv2_integrations": {},
225
227
  "aws-cdk-lib.aws_appconfig": {
226
228
  "targets": {
227
229
  "dotnet": {
@@ -352,6 +354,19 @@
352
354
  }
353
355
  }
354
356
  },
357
+ "aws-cdk-lib.aws_arczonalshift": {
358
+ "targets": {
359
+ "dotnet": {
360
+ "package": "Amazon.CDK.AWS.ARCZonalShift"
361
+ },
362
+ "java": {
363
+ "package": "software.amazon.awscdk.services.arczonalshift"
364
+ },
365
+ "python": {
366
+ "module": "aws_cdk.aws_arczonalshift"
367
+ }
368
+ }
369
+ },
355
370
  "aws-cdk-lib.aws_athena": {
356
371
  "targets": {
357
372
  "dotnet": {
@@ -2849,6 +2864,19 @@
2849
2864
  }
2850
2865
  }
2851
2866
  },
2867
+ "aws-cdk-lib.aws_s3express": {
2868
+ "targets": {
2869
+ "dotnet": {
2870
+ "package": "Amazon.CDK.AWS.S3Express"
2871
+ },
2872
+ "java": {
2873
+ "package": "software.amazon.awscdk.services.s3express"
2874
+ },
2875
+ "python": {
2876
+ "module": "aws_cdk.aws_s3express"
2877
+ }
2878
+ }
2879
+ },
2852
2880
  "aws-cdk-lib.aws_s3objectlambda": {
2853
2881
  "targets": {
2854
2882
  "dotnet": {
@@ -3343,6 +3371,19 @@
3343
3371
  }
3344
3372
  }
3345
3373
  },
3374
+ "aws-cdk-lib.aws_workspacesthinclient": {
3375
+ "targets": {
3376
+ "dotnet": {
3377
+ "package": "Amazon.CDK.AWS.WorkSpacesThinClient"
3378
+ },
3379
+ "java": {
3380
+ "package": "software.amazon.awscdk.services.workspacesthinclient"
3381
+ },
3382
+ "python": {
3383
+ "module": "aws_cdk.aws_workspacesthinclient"
3384
+ }
3385
+ }
3386
+ },
3346
3387
  "aws-cdk-lib.aws_workspacesweb": {
3347
3388
  "targets": {
3348
3389
  "dotnet": {
@@ -3579,7 +3620,7 @@
3579
3620
  },
3580
3621
  "name": "@aws-cdk/aws-msk-alpha",
3581
3622
  "readme": {
3582
- "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, 'BootstrapBrokerStringSaslIam', { value: cluster.bootstrapBrokersSaslIam });\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### 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\n### SASL/IAM + TLS\n\nEnable client authentication with [IAM](https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html)\nas well as enable client authentication with TLS by setting 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.saslTls({\n iam: true,\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\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"
3623
+ "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, 'BootstrapBrokerStringSaslIam', { value: cluster.bootstrapBrokersSaslIam });\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### 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\n### SASL/IAM + TLS\n\nEnable client authentication with [IAM](https://docs.aws.amazon.com/msk/latest/developerguide/iam-access-control.html)\nas well as enable client authentication with TLS by setting 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.saslTls({\n iam: true,\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\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## Storage Mode\n\nYou can configure an MSK cluster storage mode using the `storageMode` property.\n\nTiered storage is a low-cost storage tier for Amazon MSK that scales to virtually unlimited storage,\nmaking it cost-effective to build streaming data applications.\n\n> Visit [Tiered storage](https://docs.aws.amazon.com/msk/latest/developerguide/msk-tiered-storage.html) for more details.\n\n```ts\ndeclare const vpc: ec2.Vpc;\ndeclare const bucket: s3.IBucket;\n\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_2_TIERED,\n vpc,\n storageMode: msk.StorageMode.TIERED,\n});\n```\n"
3583
3624
  },
3584
3625
  "repository": {
3585
3626
  "directory": "packages/@aws-cdk/aws-msk-alpha",
@@ -3632,7 +3673,7 @@
3632
3673
  "kind": "interface",
3633
3674
  "locationInModule": {
3634
3675
  "filename": "lib/cluster.ts",
3635
- "line": 232
3676
+ "line": 275
3636
3677
  },
3637
3678
  "name": "BrokerLogging",
3638
3679
  "properties": [
@@ -3646,7 +3687,7 @@
3646
3687
  "immutable": true,
3647
3688
  "locationInModule": {
3648
3689
  "filename": "lib/cluster.ts",
3649
- "line": 244
3690
+ "line": 288
3650
3691
  },
3651
3692
  "name": "cloudwatchLogGroup",
3652
3693
  "optional": true,
@@ -3664,7 +3705,7 @@
3664
3705
  "immutable": true,
3665
3706
  "locationInModule": {
3666
3707
  "filename": "lib/cluster.ts",
3667
- "line": 238
3708
+ "line": 281
3668
3709
  },
3669
3710
  "name": "firehoseDeliveryStreamName",
3670
3711
  "optional": true,
@@ -3682,7 +3723,7 @@
3682
3723
  "immutable": true,
3683
3724
  "locationInModule": {
3684
3725
  "filename": "lib/cluster.ts",
3685
- "line": 250
3726
+ "line": 295
3686
3727
  },
3687
3728
  "name": "s3",
3688
3729
  "optional": true,
@@ -3707,7 +3748,7 @@
3707
3748
  "kind": "class",
3708
3749
  "locationInModule": {
3709
3750
  "filename": "lib/cluster.ts",
3710
- "line": 354
3751
+ "line": 405
3711
3752
  },
3712
3753
  "methods": [
3713
3754
  {
@@ -3717,7 +3758,7 @@
3717
3758
  },
3718
3759
  "locationInModule": {
3719
3760
  "filename": "lib/cluster.ts",
3720
- "line": 358
3761
+ "line": 409
3721
3762
  },
3722
3763
  "name": "sasl",
3723
3764
  "parameters": [
@@ -3742,7 +3783,7 @@
3742
3783
  },
3743
3784
  "locationInModule": {
3744
3785
  "filename": "lib/cluster.ts",
3745
- "line": 372
3786
+ "line": 423
3746
3787
  },
3747
3788
  "name": "saslTls",
3748
3789
  "parameters": [
@@ -3767,7 +3808,7 @@
3767
3808
  },
3768
3809
  "locationInModule": {
3769
3810
  "filename": "lib/cluster.ts",
3770
- "line": 365
3811
+ "line": 416
3771
3812
  },
3772
3813
  "name": "tls",
3773
3814
  "parameters": [
@@ -3796,7 +3837,7 @@
3796
3837
  "immutable": true,
3797
3838
  "locationInModule": {
3798
3839
  "filename": "lib/cluster.ts",
3799
- "line": 381
3840
+ "line": 432
3800
3841
  },
3801
3842
  "name": "saslProps",
3802
3843
  "optional": true,
@@ -3812,7 +3853,7 @@
3812
3853
  "immutable": true,
3813
3854
  "locationInModule": {
3814
3855
  "filename": "lib/cluster.ts",
3815
- "line": 382
3856
+ "line": 433
3816
3857
  },
3817
3858
  "name": "tlsProps",
3818
3859
  "optional": true,
@@ -3837,7 +3878,7 @@
3837
3878
  "kind": "enum",
3838
3879
  "locationInModule": {
3839
3880
  "filename": "lib/cluster.ts",
3840
- "line": 272
3881
+ "line": 318
3841
3882
  },
3842
3883
  "members": [
3843
3884
  {
@@ -3884,7 +3925,7 @@
3884
3925
  },
3885
3926
  "locationInModule": {
3886
3927
  "filename": "lib/cluster.ts",
3887
- "line": 415
3928
+ "line": 466
3888
3929
  },
3889
3930
  "parameters": [
3890
3931
  {
@@ -3913,7 +3954,7 @@
3913
3954
  "kind": "class",
3914
3955
  "locationInModule": {
3915
3956
  "filename": "lib/cluster.ts",
3916
- "line": 391
3957
+ "line": 442
3917
3958
  },
3918
3959
  "methods": [
3919
3960
  {
@@ -3923,7 +3964,7 @@
3923
3964
  },
3924
3965
  "locationInModule": {
3925
3966
  "filename": "lib/cluster.ts",
3926
- "line": 395
3967
+ "line": 446
3927
3968
  },
3928
3969
  "name": "fromClusterArn",
3929
3970
  "parameters": [
@@ -3961,7 +4002,7 @@
3961
4002
  },
3962
4003
  "locationInModule": {
3963
4004
  "filename": "lib/cluster.ts",
3964
- "line": 842
4005
+ "line": 905
3965
4006
  },
3966
4007
  "name": "addUser",
3967
4008
  "parameters": [
@@ -3991,7 +4032,7 @@
3991
4032
  "immutable": true,
3992
4033
  "locationInModule": {
3993
4034
  "filename": "lib/cluster.ts",
3994
- "line": 797
4035
+ "line": 860
3995
4036
  },
3996
4037
  "name": "bootstrapBrokers",
3997
4038
  "type": {
@@ -4008,7 +4049,7 @@
4008
4049
  "immutable": true,
4009
4050
  "locationInModule": {
4010
4051
  "filename": "lib/cluster.ts",
4011
- "line": 830
4052
+ "line": 893
4012
4053
  },
4013
4054
  "name": "bootstrapBrokersSaslIam",
4014
4055
  "type": {
@@ -4025,7 +4066,7 @@
4025
4066
  "immutable": true,
4026
4067
  "locationInModule": {
4027
4068
  "filename": "lib/cluster.ts",
4028
- "line": 819
4069
+ "line": 882
4029
4070
  },
4030
4071
  "name": "bootstrapBrokersSaslScram",
4031
4072
  "type": {
@@ -4042,7 +4083,7 @@
4042
4083
  "immutable": true,
4043
4084
  "locationInModule": {
4044
4085
  "filename": "lib/cluster.ts",
4045
- "line": 808
4086
+ "line": 871
4046
4087
  },
4047
4088
  "name": "bootstrapBrokersTls",
4048
4089
  "type": {
@@ -4057,7 +4098,7 @@
4057
4098
  "immutable": true,
4058
4099
  "locationInModule": {
4059
4100
  "filename": "lib/cluster.ts",
4060
- "line": 408
4101
+ "line": 459
4061
4102
  },
4062
4103
  "name": "clusterArn",
4063
4104
  "overrides": "@aws-cdk/aws-msk-alpha.ICluster",
@@ -4073,7 +4114,7 @@
4073
4114
  "immutable": true,
4074
4115
  "locationInModule": {
4075
4116
  "filename": "lib/cluster.ts",
4076
- "line": 409
4117
+ "line": 460
4077
4118
  },
4078
4119
  "name": "clusterName",
4079
4120
  "overrides": "@aws-cdk/aws-msk-alpha.ICluster",
@@ -4107,7 +4148,7 @@
4107
4148
  "immutable": true,
4108
4149
  "locationInModule": {
4109
4150
  "filename": "lib/cluster.ts",
4110
- "line": 746
4151
+ "line": 809
4111
4152
  },
4112
4153
  "name": "zookeeperConnectionString",
4113
4154
  "type": {
@@ -4124,7 +4165,7 @@
4124
4165
  "immutable": true,
4125
4166
  "locationInModule": {
4126
4167
  "filename": "lib/cluster.ts",
4127
- "line": 757
4168
+ "line": 820
4128
4169
  },
4129
4170
  "name": "zookeeperConnectionStringTls",
4130
4171
  "type": {
@@ -4139,7 +4180,7 @@
4139
4180
  "immutable": true,
4140
4181
  "locationInModule": {
4141
4182
  "filename": "lib/cluster.ts",
4142
- "line": 411
4183
+ "line": 462
4143
4184
  },
4144
4185
  "name": "saslScramAuthenticationKey",
4145
4186
  "optional": true,
@@ -4166,7 +4207,7 @@
4166
4207
  "kind": "interface",
4167
4208
  "locationInModule": {
4168
4209
  "filename": "lib/cluster.ts",
4169
- "line": 167
4210
+ "line": 204
4170
4211
  },
4171
4212
  "name": "ClusterConfigurationInfo",
4172
4213
  "properties": [
@@ -4180,7 +4221,7 @@
4180
4221
  "immutable": true,
4181
4222
  "locationInModule": {
4182
4223
  "filename": "lib/cluster.ts",
4183
- "line": 172
4224
+ "line": 209
4184
4225
  },
4185
4226
  "name": "arn",
4186
4227
  "type": {
@@ -4196,7 +4237,7 @@
4196
4237
  "immutable": true,
4197
4238
  "locationInModule": {
4198
4239
  "filename": "lib/cluster.ts",
4199
- "line": 176
4240
+ "line": 214
4200
4241
  },
4201
4242
  "name": "revision",
4202
4243
  "type": {
@@ -4217,7 +4258,7 @@
4217
4258
  "kind": "enum",
4218
4259
  "locationInModule": {
4219
4260
  "filename": "lib/cluster.ts",
4220
- "line": 184
4261
+ "line": 222
4221
4262
  },
4222
4263
  "members": [
4223
4264
  {
@@ -4296,7 +4337,7 @@
4296
4337
  "immutable": true,
4297
4338
  "locationInModule": {
4298
4339
  "filename": "lib/cluster.ts",
4299
- "line": 65
4340
+ "line": 66
4300
4341
  },
4301
4342
  "name": "kafkaVersion",
4302
4343
  "type": {
@@ -4313,7 +4354,7 @@
4313
4354
  "immutable": true,
4314
4355
  "locationInModule": {
4315
4356
  "filename": "lib/cluster.ts",
4316
- "line": 76
4357
+ "line": 79
4317
4358
  },
4318
4359
  "name": "vpc",
4319
4360
  "type": {
@@ -4331,7 +4372,7 @@
4331
4372
  "immutable": true,
4332
4373
  "locationInModule": {
4333
4374
  "filename": "lib/cluster.ts",
4334
- "line": 136
4375
+ "line": 156
4335
4376
  },
4336
4377
  "name": "clientAuthentication",
4337
4378
  "optional": true,
@@ -4349,7 +4390,7 @@
4349
4390
  "immutable": true,
4350
4391
  "locationInModule": {
4351
4392
  "filename": "lib/cluster.ts",
4352
- "line": 111
4393
+ "line": 127
4353
4394
  },
4354
4395
  "name": "configurationInfo",
4355
4396
  "optional": true,
@@ -4367,7 +4408,7 @@
4367
4408
  "immutable": true,
4368
4409
  "locationInModule": {
4369
4410
  "filename": "lib/cluster.ts",
4370
- "line": 105
4411
+ "line": 112
4371
4412
  },
4372
4413
  "name": "ebsStorageInfo",
4373
4414
  "optional": true,
@@ -4385,7 +4426,7 @@
4385
4426
  "immutable": true,
4386
4427
  "locationInModule": {
4387
4428
  "filename": "lib/cluster.ts",
4388
- "line": 129
4429
+ "line": 148
4389
4430
  },
4390
4431
  "name": "encryptionInTransit",
4391
4432
  "optional": true,
@@ -4404,7 +4445,7 @@
4404
4445
  "immutable": true,
4405
4446
  "locationInModule": {
4406
4447
  "filename": "lib/cluster.ts",
4407
- "line": 92
4448
+ "line": 97
4408
4449
  },
4409
4450
  "name": "instanceType",
4410
4451
  "optional": true,
@@ -4422,7 +4463,7 @@
4422
4463
  "immutable": true,
4423
4464
  "locationInModule": {
4424
4465
  "filename": "lib/cluster.ts",
4425
- "line": 123
4466
+ "line": 141
4426
4467
  },
4427
4468
  "name": "logging",
4428
4469
  "optional": true,
@@ -4440,7 +4481,7 @@
4440
4481
  "immutable": true,
4441
4482
  "locationInModule": {
4442
4483
  "filename": "lib/cluster.ts",
4443
- "line": 117
4484
+ "line": 134
4444
4485
  },
4445
4486
  "name": "monitoring",
4446
4487
  "optional": true,
@@ -4458,7 +4499,7 @@
4458
4499
  "immutable": true,
4459
4500
  "locationInModule": {
4460
4501
  "filename": "lib/cluster.ts",
4461
- "line": 71
4502
+ "line": 73
4462
4503
  },
4463
4504
  "name": "numberOfBrokerNodes",
4464
4505
  "optional": true,
@@ -4476,7 +4517,7 @@
4476
4517
  "immutable": true,
4477
4518
  "locationInModule": {
4478
4519
  "filename": "lib/cluster.ts",
4479
- "line": 142
4520
+ "line": 163
4480
4521
  },
4481
4522
  "name": "removalPolicy",
4482
4523
  "optional": true,
@@ -4494,7 +4535,7 @@
4494
4535
  "immutable": true,
4495
4536
  "locationInModule": {
4496
4537
  "filename": "lib/cluster.ts",
4497
- "line": 99
4538
+ "line": 105
4498
4539
  },
4499
4540
  "name": "securityGroups",
4500
4541
  "optional": true,
@@ -4507,6 +4548,25 @@
4507
4548
  }
4508
4549
  }
4509
4550
  },
4551
+ {
4552
+ "abstract": true,
4553
+ "docs": {
4554
+ "default": "- StorageMode.LOCAL",
4555
+ "see": "https://docs.aws.amazon.com/msk/latest/developerguide/msk-tiered-storage.html",
4556
+ "stability": "experimental",
4557
+ "summary": "This controls storage mode for supported storage tiers."
4558
+ },
4559
+ "immutable": true,
4560
+ "locationInModule": {
4561
+ "filename": "lib/cluster.ts",
4562
+ "line": 120
4563
+ },
4564
+ "name": "storageMode",
4565
+ "optional": true,
4566
+ "type": {
4567
+ "fqn": "@aws-cdk/aws-msk-alpha.StorageMode"
4568
+ }
4569
+ },
4510
4570
  {
4511
4571
  "abstract": true,
4512
4572
  "docs": {
@@ -4518,7 +4578,7 @@
4518
4578
  "immutable": true,
4519
4579
  "locationInModule": {
4520
4580
  "filename": "lib/cluster.ts",
4521
- "line": 85
4581
+ "line": 89
4522
4582
  },
4523
4583
  "name": "vpcSubnets",
4524
4584
  "optional": true,
@@ -4544,7 +4604,7 @@
4544
4604
  "kind": "interface",
4545
4605
  "locationInModule": {
4546
4606
  "filename": "lib/cluster.ts",
4547
- "line": 148
4607
+ "line": 169
4548
4608
  },
4549
4609
  "name": "EbsStorageInfo",
4550
4610
  "properties": [
@@ -4558,7 +4618,7 @@
4558
4618
  "immutable": true,
4559
4619
  "locationInModule": {
4560
4620
  "filename": "lib/cluster.ts",
4561
- "line": 160
4621
+ "line": 182
4562
4622
  },
4563
4623
  "name": "encryptionKey",
4564
4624
  "optional": true,
@@ -4576,7 +4636,7 @@
4576
4636
  "immutable": true,
4577
4637
  "locationInModule": {
4578
4638
  "filename": "lib/cluster.ts",
4579
- "line": 154
4639
+ "line": 175
4580
4640
  },
4581
4641
  "name": "volumeSize",
4582
4642
  "optional": true,
@@ -4603,7 +4663,7 @@
4603
4663
  "kind": "interface",
4604
4664
  "locationInModule": {
4605
4665
  "filename": "lib/cluster.ts",
4606
- "line": 292
4666
+ "line": 340
4607
4667
  },
4608
4668
  "name": "EncryptionInTransitConfig",
4609
4669
  "properties": [
@@ -4617,7 +4677,7 @@
4617
4677
  "immutable": true,
4618
4678
  "locationInModule": {
4619
4679
  "filename": "lib/cluster.ts",
4620
- "line": 298
4680
+ "line": 346
4621
4681
  },
4622
4682
  "name": "clientBroker",
4623
4683
  "optional": true,
@@ -4635,7 +4695,7 @@
4635
4695
  "immutable": true,
4636
4696
  "locationInModule": {
4637
4697
  "filename": "lib/cluster.ts",
4638
- "line": 304
4698
+ "line": 353
4639
4699
  },
4640
4700
  "name": "enableInCluster",
4641
4701
  "optional": true,
@@ -4729,7 +4789,7 @@
4729
4789
  },
4730
4790
  "locationInModule": {
4731
4791
  "filename": "lib/cluster-version.ts",
4732
- "line": 108
4792
+ "line": 118
4733
4793
  },
4734
4794
  "name": "of",
4735
4795
  "parameters": [
@@ -4749,6 +4809,22 @@
4749
4809
  }
4750
4810
  },
4751
4811
  "static": true
4812
+ },
4813
+ {
4814
+ "docs": {
4815
+ "stability": "experimental",
4816
+ "summary": "Checks if the cluster version supports tiered storage mode."
4817
+ },
4818
+ "locationInModule": {
4819
+ "filename": "lib/cluster-version.ts",
4820
+ "line": 131
4821
+ },
4822
+ "name": "isTieredStorageCompatible",
4823
+ "returns": {
4824
+ "type": {
4825
+ "primitive": "boolean"
4826
+ }
4827
+ }
4752
4828
  }
4753
4829
  ],
4754
4830
  "name": "KafkaVersion",
@@ -4997,13 +5073,30 @@
4997
5073
  "const": true,
4998
5074
  "docs": {
4999
5075
  "stability": "experimental",
5000
- "summary": "Kafka version 3.1.1."
5076
+ "summary": "AWS MSK Kafka version 2.8.2.tiered."
5001
5077
  },
5002
5078
  "immutable": true,
5003
5079
  "locationInModule": {
5004
5080
  "filename": "lib/cluster-version.ts",
5005
5081
  "line": 82
5006
5082
  },
5083
+ "name": "V2_8_2_TIERED",
5084
+ "static": true,
5085
+ "type": {
5086
+ "fqn": "@aws-cdk/aws-msk-alpha.KafkaVersion"
5087
+ }
5088
+ },
5089
+ {
5090
+ "const": true,
5091
+ "docs": {
5092
+ "stability": "experimental",
5093
+ "summary": "Kafka version 3.1.1."
5094
+ },
5095
+ "immutable": true,
5096
+ "locationInModule": {
5097
+ "filename": "lib/cluster-version.ts",
5098
+ "line": 87
5099
+ },
5007
5100
  "name": "V3_1_1",
5008
5101
  "static": true,
5009
5102
  "type": {
@@ -5019,7 +5112,7 @@
5019
5112
  "immutable": true,
5020
5113
  "locationInModule": {
5021
5114
  "filename": "lib/cluster-version.ts",
5022
- "line": 87
5115
+ "line": 92
5023
5116
  },
5024
5117
  "name": "V3_2_0",
5025
5118
  "static": true,
@@ -5036,7 +5129,7 @@
5036
5129
  "immutable": true,
5037
5130
  "locationInModule": {
5038
5131
  "filename": "lib/cluster-version.ts",
5039
- "line": 92
5132
+ "line": 97
5040
5133
  },
5041
5134
  "name": "V3_3_1",
5042
5135
  "static": true,
@@ -5053,7 +5146,7 @@
5053
5146
  "immutable": true,
5054
5147
  "locationInModule": {
5055
5148
  "filename": "lib/cluster-version.ts",
5056
- "line": 97
5149
+ "line": 102
5057
5150
  },
5058
5151
  "name": "V3_3_2",
5059
5152
  "static": true,
@@ -5070,7 +5163,7 @@
5070
5163
  "immutable": true,
5071
5164
  "locationInModule": {
5072
5165
  "filename": "lib/cluster-version.ts",
5073
- "line": 102
5166
+ "line": 107
5074
5167
  },
5075
5168
  "name": "V3_4_0",
5076
5169
  "static": true,
@@ -5078,6 +5171,23 @@
5078
5171
  "fqn": "@aws-cdk/aws-msk-alpha.KafkaVersion"
5079
5172
  }
5080
5173
  },
5174
+ {
5175
+ "const": true,
5176
+ "docs": {
5177
+ "stability": "experimental",
5178
+ "summary": "Kafka version 3.5.1."
5179
+ },
5180
+ "immutable": true,
5181
+ "locationInModule": {
5182
+ "filename": "lib/cluster-version.ts",
5183
+ "line": 112
5184
+ },
5185
+ "name": "V3_5_1",
5186
+ "static": true,
5187
+ "type": {
5188
+ "fqn": "@aws-cdk/aws-msk-alpha.KafkaVersion"
5189
+ }
5190
+ },
5081
5191
  {
5082
5192
  "docs": {
5083
5193
  "stability": "experimental",
@@ -5086,7 +5196,7 @@
5086
5196
  "immutable": true,
5087
5197
  "locationInModule": {
5088
5198
  "filename": "lib/cluster-version.ts",
5089
- "line": 116
5199
+ "line": 126
5090
5200
  },
5091
5201
  "name": "version",
5092
5202
  "type": {
@@ -5111,7 +5221,7 @@
5111
5221
  "kind": "interface",
5112
5222
  "locationInModule": {
5113
5223
  "filename": "lib/cluster.ts",
5114
- "line": 206
5224
+ "line": 247
5115
5225
  },
5116
5226
  "name": "MonitoringConfiguration",
5117
5227
  "properties": [
@@ -5125,7 +5235,7 @@
5125
5235
  "immutable": true,
5126
5236
  "locationInModule": {
5127
5237
  "filename": "lib/cluster.ts",
5128
- "line": 212
5238
+ "line": 253
5129
5239
  },
5130
5240
  "name": "clusterMonitoringLevel",
5131
5241
  "optional": true,
@@ -5143,7 +5253,7 @@
5143
5253
  "immutable": true,
5144
5254
  "locationInModule": {
5145
5255
  "filename": "lib/cluster.ts",
5146
- "line": 218
5256
+ "line": 260
5147
5257
  },
5148
5258
  "name": "enablePrometheusJmxExporter",
5149
5259
  "optional": true,
@@ -5162,7 +5272,7 @@
5162
5272
  "immutable": true,
5163
5273
  "locationInModule": {
5164
5274
  "filename": "lib/cluster.ts",
5165
- "line": 226
5275
+ "line": 269
5166
5276
  },
5167
5277
  "name": "enablePrometheusNodeExporter",
5168
5278
  "optional": true,
@@ -5188,7 +5298,7 @@
5188
5298
  "kind": "interface",
5189
5299
  "locationInModule": {
5190
5300
  "filename": "lib/cluster.ts",
5191
- "line": 256
5301
+ "line": 301
5192
5302
  },
5193
5303
  "name": "S3LoggingConfiguration",
5194
5304
  "properties": [
@@ -5201,7 +5311,7 @@
5201
5311
  "immutable": true,
5202
5312
  "locationInModule": {
5203
5313
  "filename": "lib/cluster.ts",
5204
- "line": 260
5314
+ "line": 305
5205
5315
  },
5206
5316
  "name": "bucket",
5207
5317
  "type": {
@@ -5218,7 +5328,7 @@
5218
5328
  "immutable": true,
5219
5329
  "locationInModule": {
5220
5330
  "filename": "lib/cluster.ts",
5221
- "line": 266
5331
+ "line": 312
5222
5332
  },
5223
5333
  "name": "prefix",
5224
5334
  "optional": true,
@@ -5244,7 +5354,7 @@
5244
5354
  "kind": "interface",
5245
5355
  "locationInModule": {
5246
5356
  "filename": "lib/cluster.ts",
5247
- "line": 310
5357
+ "line": 359
5248
5358
  },
5249
5359
  "name": "SaslAuthProps",
5250
5360
  "properties": [
@@ -5258,7 +5368,7 @@
5258
5368
  "immutable": true,
5259
5369
  "locationInModule": {
5260
5370
  "filename": "lib/cluster.ts",
5261
- "line": 322
5371
+ "line": 372
5262
5372
  },
5263
5373
  "name": "iam",
5264
5374
  "optional": true,
@@ -5277,7 +5387,7 @@
5277
5387
  "immutable": true,
5278
5388
  "locationInModule": {
5279
5389
  "filename": "lib/cluster.ts",
5280
- "line": 331
5390
+ "line": 382
5281
5391
  },
5282
5392
  "name": "key",
5283
5393
  "optional": true,
@@ -5295,7 +5405,7 @@
5295
5405
  "immutable": true,
5296
5406
  "locationInModule": {
5297
5407
  "filename": "lib/cluster.ts",
5298
- "line": 316
5408
+ "line": 365
5299
5409
  },
5300
5410
  "name": "scram",
5301
5411
  "optional": true,
@@ -5325,11 +5435,46 @@
5325
5435
  "kind": "interface",
5326
5436
  "locationInModule": {
5327
5437
  "filename": "lib/cluster.ts",
5328
- "line": 349
5438
+ "line": 400
5329
5439
  },
5330
5440
  "name": "SaslTlsAuthProps",
5331
5441
  "symbolId": "lib/cluster:SaslTlsAuthProps"
5332
5442
  },
5443
+ "@aws-cdk/aws-msk-alpha.StorageMode": {
5444
+ "assembly": "@aws-cdk/aws-msk-alpha",
5445
+ "docs": {
5446
+ "stability": "experimental",
5447
+ "summary": "The storage mode for the cluster brokers.",
5448
+ "example": "declare const vpc: ec2.Vpc;\ndeclare const bucket: s3.IBucket;\n\nconst cluster = new msk.Cluster(this, 'cluster', {\n clusterName: 'myCluster',\n kafkaVersion: msk.KafkaVersion.V2_8_2_TIERED,\n vpc,\n storageMode: msk.StorageMode.TIERED,\n});",
5449
+ "custom": {
5450
+ "exampleMetadata": "infused"
5451
+ }
5452
+ },
5453
+ "fqn": "@aws-cdk/aws-msk-alpha.StorageMode",
5454
+ "kind": "enum",
5455
+ "locationInModule": {
5456
+ "filename": "lib/cluster.ts",
5457
+ "line": 188
5458
+ },
5459
+ "members": [
5460
+ {
5461
+ "docs": {
5462
+ "stability": "experimental",
5463
+ "summary": "Local storage mode utilizes network attached EBS storage."
5464
+ },
5465
+ "name": "LOCAL"
5466
+ },
5467
+ {
5468
+ "docs": {
5469
+ "stability": "experimental",
5470
+ "summary": "Tiered storage mode utilizes EBS storage and Tiered storage."
5471
+ },
5472
+ "name": "TIERED"
5473
+ }
5474
+ ],
5475
+ "name": "StorageMode",
5476
+ "symbolId": "lib/cluster:StorageMode"
5477
+ },
5333
5478
  "@aws-cdk/aws-msk-alpha.TlsAuthProps": {
5334
5479
  "assembly": "@aws-cdk/aws-msk-alpha",
5335
5480
  "datatype": true,
@@ -5345,7 +5490,7 @@
5345
5490
  "kind": "interface",
5346
5491
  "locationInModule": {
5347
5492
  "filename": "lib/cluster.ts",
5348
- "line": 337
5493
+ "line": 388
5349
5494
  },
5350
5495
  "name": "TlsAuthProps",
5351
5496
  "properties": [
@@ -5359,7 +5504,7 @@
5359
5504
  "immutable": true,
5360
5505
  "locationInModule": {
5361
5506
  "filename": "lib/cluster.ts",
5362
- "line": 343
5507
+ "line": 394
5363
5508
  },
5364
5509
  "name": "certificateAuthorities",
5365
5510
  "optional": true,
@@ -5376,6 +5521,6 @@
5376
5521
  "symbolId": "lib/cluster:TlsAuthProps"
5377
5522
  }
5378
5523
  },
5379
- "version": "2.112.0-alpha.0",
5524
+ "version": "2.114.0-alpha.0",
5380
5525
  "fingerprint": "**********"
5381
5526
  }