@aws-cdk/aws-msk-alpha 2.176.0-alpha.0 → 2.178.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 +469 -94
- package/.jsii.tabl.json.gz +0 -0
- package/.warnings.jsii.js +33 -1
- package/README.md +21 -0
- package/awslint.json +1 -0
- package/lib/cluster-version.d.ts +1 -1
- package/lib/cluster-version.js +2 -3
- package/lib/cluster.d.ts +1 -2
- package/lib/cluster.js +22 -7
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/serverless-cluster.d.ts +61 -0
- package/lib/serverless-cluster.js +108 -0
- package/package.json +7 -7
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.178.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -2567,6 +2567,32 @@
|
|
|
2567
2567
|
}
|
|
2568
2568
|
}
|
|
2569
2569
|
},
|
|
2570
|
+
"aws-cdk-lib.aws_notifications": {
|
|
2571
|
+
"targets": {
|
|
2572
|
+
"dotnet": {
|
|
2573
|
+
"package": "Amazon.CDK.AWS.Notifications"
|
|
2574
|
+
},
|
|
2575
|
+
"java": {
|
|
2576
|
+
"package": "software.amazon.awscdk.services.notifications"
|
|
2577
|
+
},
|
|
2578
|
+
"python": {
|
|
2579
|
+
"module": "aws_cdk.aws_notifications"
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2583
|
+
"aws-cdk-lib.aws_notificationscontacts": {
|
|
2584
|
+
"targets": {
|
|
2585
|
+
"dotnet": {
|
|
2586
|
+
"package": "Amazon.CDK.AWS.NotificationsContacts"
|
|
2587
|
+
},
|
|
2588
|
+
"java": {
|
|
2589
|
+
"package": "software.amazon.awscdk.services.notificationscontacts"
|
|
2590
|
+
},
|
|
2591
|
+
"python": {
|
|
2592
|
+
"module": "aws_cdk.aws_notificationscontacts"
|
|
2593
|
+
}
|
|
2594
|
+
}
|
|
2595
|
+
},
|
|
2570
2596
|
"aws-cdk-lib.aws_oam": {
|
|
2571
2597
|
"targets": {
|
|
2572
2598
|
"dotnet": {
|
|
@@ -3913,7 +3939,7 @@
|
|
|
3913
3939
|
"stability": "experimental"
|
|
3914
3940
|
},
|
|
3915
3941
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
3916
|
-
"jsiiVersion": "5.7.
|
|
3942
|
+
"jsiiVersion": "5.7.4 (build fc2a28e)",
|
|
3917
3943
|
"keywords": [
|
|
3918
3944
|
"aws",
|
|
3919
3945
|
"cdk",
|
|
@@ -3935,7 +3961,7 @@
|
|
|
3935
3961
|
},
|
|
3936
3962
|
"name": "@aws-cdk/aws-msk-alpha",
|
|
3937
3963
|
"readme": {
|
|
3938
|
-
"markdown": "# Amazon Managed Streaming for Apache Kafka Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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)\nto see the list of compatible Kafka versions and 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.V3_6_0,\n vpc,\n storageMode: msk.StorageMode.TIERED,\n});\n```\n"
|
|
3964
|
+
"markdown": "# Amazon Managed Streaming for Apache Kafka Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\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)\nto see the list of compatible Kafka versions and 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.V3_6_0,\n vpc,\n storageMode: msk.StorageMode.TIERED,\n});\n```\n\n## MSK Serverless\n\nYou can also use MSK Serverless by using `ServerlessCluster` class.\n\nMSK Serverless is a cluster type for Amazon MSK that makes it possible for you to run Apache Kafka without having to manage and scale cluster capacity.\n\nMSK Serverless requires IAM access control for all clusters.\n\nFor more infomation, see [Use MSK Serverless clusters](https://docs.aws.amazon.com/msk/latest/developerguide/serverless-getting-started.html).\n\n```ts\ndeclare const vpc: ec2.Vpc;\n\nconst serverlessCluster = new msk.ServerlessCluster(this, 'ServerlessCluster', {\n clusterName: 'MyServerlessCluster',\n vpcConfigs: [\n { vpc },\n ],\n});\n```\n"
|
|
3939
3965
|
},
|
|
3940
3966
|
"repository": {
|
|
3941
3967
|
"directory": "packages/@aws-cdk/aws-msk-alpha",
|
|
@@ -3988,7 +4014,7 @@
|
|
|
3988
4014
|
"kind": "interface",
|
|
3989
4015
|
"locationInModule": {
|
|
3990
4016
|
"filename": "lib/cluster.ts",
|
|
3991
|
-
"line":
|
|
4017
|
+
"line": 276
|
|
3992
4018
|
},
|
|
3993
4019
|
"name": "BrokerLogging",
|
|
3994
4020
|
"properties": [
|
|
@@ -4002,7 +4028,7 @@
|
|
|
4002
4028
|
"immutable": true,
|
|
4003
4029
|
"locationInModule": {
|
|
4004
4030
|
"filename": "lib/cluster.ts",
|
|
4005
|
-
"line":
|
|
4031
|
+
"line": 289
|
|
4006
4032
|
},
|
|
4007
4033
|
"name": "cloudwatchLogGroup",
|
|
4008
4034
|
"optional": true,
|
|
@@ -4020,7 +4046,7 @@
|
|
|
4020
4046
|
"immutable": true,
|
|
4021
4047
|
"locationInModule": {
|
|
4022
4048
|
"filename": "lib/cluster.ts",
|
|
4023
|
-
"line":
|
|
4049
|
+
"line": 282
|
|
4024
4050
|
},
|
|
4025
4051
|
"name": "firehoseDeliveryStreamName",
|
|
4026
4052
|
"optional": true,
|
|
@@ -4038,7 +4064,7 @@
|
|
|
4038
4064
|
"immutable": true,
|
|
4039
4065
|
"locationInModule": {
|
|
4040
4066
|
"filename": "lib/cluster.ts",
|
|
4041
|
-
"line":
|
|
4067
|
+
"line": 296
|
|
4042
4068
|
},
|
|
4043
4069
|
"name": "s3",
|
|
4044
4070
|
"optional": true,
|
|
@@ -4063,7 +4089,7 @@
|
|
|
4063
4089
|
"kind": "class",
|
|
4064
4090
|
"locationInModule": {
|
|
4065
4091
|
"filename": "lib/cluster.ts",
|
|
4066
|
-
"line":
|
|
4092
|
+
"line": 406
|
|
4067
4093
|
},
|
|
4068
4094
|
"methods": [
|
|
4069
4095
|
{
|
|
@@ -4073,7 +4099,7 @@
|
|
|
4073
4099
|
},
|
|
4074
4100
|
"locationInModule": {
|
|
4075
4101
|
"filename": "lib/cluster.ts",
|
|
4076
|
-
"line":
|
|
4102
|
+
"line": 410
|
|
4077
4103
|
},
|
|
4078
4104
|
"name": "sasl",
|
|
4079
4105
|
"parameters": [
|
|
@@ -4098,7 +4124,7 @@
|
|
|
4098
4124
|
},
|
|
4099
4125
|
"locationInModule": {
|
|
4100
4126
|
"filename": "lib/cluster.ts",
|
|
4101
|
-
"line":
|
|
4127
|
+
"line": 424
|
|
4102
4128
|
},
|
|
4103
4129
|
"name": "saslTls",
|
|
4104
4130
|
"parameters": [
|
|
@@ -4123,7 +4149,7 @@
|
|
|
4123
4149
|
},
|
|
4124
4150
|
"locationInModule": {
|
|
4125
4151
|
"filename": "lib/cluster.ts",
|
|
4126
|
-
"line":
|
|
4152
|
+
"line": 417
|
|
4127
4153
|
},
|
|
4128
4154
|
"name": "tls",
|
|
4129
4155
|
"parameters": [
|
|
@@ -4152,7 +4178,7 @@
|
|
|
4152
4178
|
"immutable": true,
|
|
4153
4179
|
"locationInModule": {
|
|
4154
4180
|
"filename": "lib/cluster.ts",
|
|
4155
|
-
"line":
|
|
4181
|
+
"line": 433
|
|
4156
4182
|
},
|
|
4157
4183
|
"name": "saslProps",
|
|
4158
4184
|
"optional": true,
|
|
@@ -4168,7 +4194,7 @@
|
|
|
4168
4194
|
"immutable": true,
|
|
4169
4195
|
"locationInModule": {
|
|
4170
4196
|
"filename": "lib/cluster.ts",
|
|
4171
|
-
"line":
|
|
4197
|
+
"line": 434
|
|
4172
4198
|
},
|
|
4173
4199
|
"name": "tlsProps",
|
|
4174
4200
|
"optional": true,
|
|
@@ -4193,7 +4219,7 @@
|
|
|
4193
4219
|
"kind": "enum",
|
|
4194
4220
|
"locationInModule": {
|
|
4195
4221
|
"filename": "lib/cluster.ts",
|
|
4196
|
-
"line":
|
|
4222
|
+
"line": 319
|
|
4197
4223
|
},
|
|
4198
4224
|
"members": [
|
|
4199
4225
|
{
|
|
@@ -4223,7 +4249,7 @@
|
|
|
4223
4249
|
},
|
|
4224
4250
|
"@aws-cdk/aws-msk-alpha.Cluster": {
|
|
4225
4251
|
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
4226
|
-
"base": "aws-cdk-
|
|
4252
|
+
"base": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
4227
4253
|
"docs": {
|
|
4228
4254
|
"custom": {
|
|
4229
4255
|
"resource": "AWS::MSK::Cluster",
|
|
@@ -4240,7 +4266,7 @@
|
|
|
4240
4266
|
},
|
|
4241
4267
|
"locationInModule": {
|
|
4242
4268
|
"filename": "lib/cluster.ts",
|
|
4243
|
-
"line":
|
|
4269
|
+
"line": 467
|
|
4244
4270
|
},
|
|
4245
4271
|
"parameters": [
|
|
4246
4272
|
{
|
|
@@ -4263,13 +4289,10 @@
|
|
|
4263
4289
|
}
|
|
4264
4290
|
]
|
|
4265
4291
|
},
|
|
4266
|
-
"interfaces": [
|
|
4267
|
-
"@aws-cdk/aws-msk-alpha.ICluster"
|
|
4268
|
-
],
|
|
4269
4292
|
"kind": "class",
|
|
4270
4293
|
"locationInModule": {
|
|
4271
4294
|
"filename": "lib/cluster.ts",
|
|
4272
|
-
"line":
|
|
4295
|
+
"line": 443
|
|
4273
4296
|
},
|
|
4274
4297
|
"methods": [
|
|
4275
4298
|
{
|
|
@@ -4279,7 +4302,7 @@
|
|
|
4279
4302
|
},
|
|
4280
4303
|
"locationInModule": {
|
|
4281
4304
|
"filename": "lib/cluster.ts",
|
|
4282
|
-
"line":
|
|
4305
|
+
"line": 447
|
|
4283
4306
|
},
|
|
4284
4307
|
"name": "fromClusterArn",
|
|
4285
4308
|
"parameters": [
|
|
@@ -4317,7 +4340,7 @@
|
|
|
4317
4340
|
},
|
|
4318
4341
|
"locationInModule": {
|
|
4319
4342
|
"filename": "lib/cluster.ts",
|
|
4320
|
-
"line":
|
|
4343
|
+
"line": 896
|
|
4321
4344
|
},
|
|
4322
4345
|
"name": "addUser",
|
|
4323
4346
|
"parameters": [
|
|
@@ -4347,7 +4370,7 @@
|
|
|
4347
4370
|
"immutable": true,
|
|
4348
4371
|
"locationInModule": {
|
|
4349
4372
|
"filename": "lib/cluster.ts",
|
|
4350
|
-
"line":
|
|
4373
|
+
"line": 851
|
|
4351
4374
|
},
|
|
4352
4375
|
"name": "bootstrapBrokers",
|
|
4353
4376
|
"type": {
|
|
@@ -4364,7 +4387,7 @@
|
|
|
4364
4387
|
"immutable": true,
|
|
4365
4388
|
"locationInModule": {
|
|
4366
4389
|
"filename": "lib/cluster.ts",
|
|
4367
|
-
"line":
|
|
4390
|
+
"line": 884
|
|
4368
4391
|
},
|
|
4369
4392
|
"name": "bootstrapBrokersSaslIam",
|
|
4370
4393
|
"type": {
|
|
@@ -4381,7 +4404,7 @@
|
|
|
4381
4404
|
"immutable": true,
|
|
4382
4405
|
"locationInModule": {
|
|
4383
4406
|
"filename": "lib/cluster.ts",
|
|
4384
|
-
"line":
|
|
4407
|
+
"line": 873
|
|
4385
4408
|
},
|
|
4386
4409
|
"name": "bootstrapBrokersSaslScram",
|
|
4387
4410
|
"type": {
|
|
@@ -4398,7 +4421,7 @@
|
|
|
4398
4421
|
"immutable": true,
|
|
4399
4422
|
"locationInModule": {
|
|
4400
4423
|
"filename": "lib/cluster.ts",
|
|
4401
|
-
"line":
|
|
4424
|
+
"line": 862
|
|
4402
4425
|
},
|
|
4403
4426
|
"name": "bootstrapBrokersTls",
|
|
4404
4427
|
"type": {
|
|
@@ -4413,10 +4436,10 @@
|
|
|
4413
4436
|
"immutable": true,
|
|
4414
4437
|
"locationInModule": {
|
|
4415
4438
|
"filename": "lib/cluster.ts",
|
|
4416
|
-
"line":
|
|
4439
|
+
"line": 460
|
|
4417
4440
|
},
|
|
4418
4441
|
"name": "clusterArn",
|
|
4419
|
-
"overrides": "@aws-cdk/aws-msk-alpha.
|
|
4442
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
4420
4443
|
"type": {
|
|
4421
4444
|
"primitive": "string"
|
|
4422
4445
|
}
|
|
@@ -4429,30 +4452,14 @@
|
|
|
4429
4452
|
"immutable": true,
|
|
4430
4453
|
"locationInModule": {
|
|
4431
4454
|
"filename": "lib/cluster.ts",
|
|
4432
|
-
"line":
|
|
4455
|
+
"line": 461
|
|
4433
4456
|
},
|
|
4434
4457
|
"name": "clusterName",
|
|
4435
|
-
"overrides": "@aws-cdk/aws-msk-alpha.
|
|
4458
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
4436
4459
|
"type": {
|
|
4437
4460
|
"primitive": "string"
|
|
4438
4461
|
}
|
|
4439
4462
|
},
|
|
4440
|
-
{
|
|
4441
|
-
"docs": {
|
|
4442
|
-
"stability": "experimental",
|
|
4443
|
-
"summary": "Manages connections for the cluster."
|
|
4444
|
-
},
|
|
4445
|
-
"immutable": true,
|
|
4446
|
-
"locationInModule": {
|
|
4447
|
-
"filename": "lib/cluster.ts",
|
|
4448
|
-
"line": 46
|
|
4449
|
-
},
|
|
4450
|
-
"name": "connections",
|
|
4451
|
-
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
4452
|
-
"type": {
|
|
4453
|
-
"fqn": "aws-cdk-lib.aws_ec2.Connections"
|
|
4454
|
-
}
|
|
4455
|
-
},
|
|
4456
4463
|
{
|
|
4457
4464
|
"docs": {
|
|
4458
4465
|
"remarks": "Uses a Custom Resource to make an API call to `describeCluster` using the Javascript SDK",
|
|
@@ -4463,7 +4470,7 @@
|
|
|
4463
4470
|
"immutable": true,
|
|
4464
4471
|
"locationInModule": {
|
|
4465
4472
|
"filename": "lib/cluster.ts",
|
|
4466
|
-
"line":
|
|
4473
|
+
"line": 801
|
|
4467
4474
|
},
|
|
4468
4475
|
"name": "zookeeperConnectionString",
|
|
4469
4476
|
"type": {
|
|
@@ -4480,7 +4487,7 @@
|
|
|
4480
4487
|
"immutable": true,
|
|
4481
4488
|
"locationInModule": {
|
|
4482
4489
|
"filename": "lib/cluster.ts",
|
|
4483
|
-
"line":
|
|
4490
|
+
"line": 812
|
|
4484
4491
|
},
|
|
4485
4492
|
"name": "zookeeperConnectionStringTls",
|
|
4486
4493
|
"type": {
|
|
@@ -4495,7 +4502,7 @@
|
|
|
4495
4502
|
"immutable": true,
|
|
4496
4503
|
"locationInModule": {
|
|
4497
4504
|
"filename": "lib/cluster.ts",
|
|
4498
|
-
"line":
|
|
4505
|
+
"line": 463
|
|
4499
4506
|
},
|
|
4500
4507
|
"name": "saslScramAuthenticationKey",
|
|
4501
4508
|
"optional": true,
|
|
@@ -4506,6 +4513,108 @@
|
|
|
4506
4513
|
],
|
|
4507
4514
|
"symbolId": "lib/cluster:Cluster"
|
|
4508
4515
|
},
|
|
4516
|
+
"@aws-cdk/aws-msk-alpha.ClusterBase": {
|
|
4517
|
+
"abstract": true,
|
|
4518
|
+
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
4519
|
+
"base": "aws-cdk-lib.Resource",
|
|
4520
|
+
"docs": {
|
|
4521
|
+
"stability": "experimental",
|
|
4522
|
+
"summary": "A new or imported MSK Cluster."
|
|
4523
|
+
},
|
|
4524
|
+
"fqn": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
4525
|
+
"initializer": {
|
|
4526
|
+
"docs": {
|
|
4527
|
+
"stability": "stable"
|
|
4528
|
+
},
|
|
4529
|
+
"locationInModule": {
|
|
4530
|
+
"filename": "core/lib/resource.ts",
|
|
4531
|
+
"line": 155
|
|
4532
|
+
},
|
|
4533
|
+
"parameters": [
|
|
4534
|
+
{
|
|
4535
|
+
"name": "scope",
|
|
4536
|
+
"type": {
|
|
4537
|
+
"fqn": "constructs.Construct"
|
|
4538
|
+
}
|
|
4539
|
+
},
|
|
4540
|
+
{
|
|
4541
|
+
"name": "id",
|
|
4542
|
+
"type": {
|
|
4543
|
+
"primitive": "string"
|
|
4544
|
+
}
|
|
4545
|
+
},
|
|
4546
|
+
{
|
|
4547
|
+
"name": "props",
|
|
4548
|
+
"optional": true,
|
|
4549
|
+
"type": {
|
|
4550
|
+
"fqn": "aws-cdk-lib.ResourceProps"
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4553
|
+
]
|
|
4554
|
+
},
|
|
4555
|
+
"interfaces": [
|
|
4556
|
+
"@aws-cdk/aws-msk-alpha.ICluster"
|
|
4557
|
+
],
|
|
4558
|
+
"kind": "class",
|
|
4559
|
+
"locationInModule": {
|
|
4560
|
+
"filename": "lib/cluster.ts",
|
|
4561
|
+
"line": 40
|
|
4562
|
+
},
|
|
4563
|
+
"name": "ClusterBase",
|
|
4564
|
+
"properties": [
|
|
4565
|
+
{
|
|
4566
|
+
"abstract": true,
|
|
4567
|
+
"docs": {
|
|
4568
|
+
"stability": "experimental",
|
|
4569
|
+
"summary": "The ARN of cluster."
|
|
4570
|
+
},
|
|
4571
|
+
"immutable": true,
|
|
4572
|
+
"locationInModule": {
|
|
4573
|
+
"filename": "lib/cluster.ts",
|
|
4574
|
+
"line": 41
|
|
4575
|
+
},
|
|
4576
|
+
"name": "clusterArn",
|
|
4577
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ICluster",
|
|
4578
|
+
"type": {
|
|
4579
|
+
"primitive": "string"
|
|
4580
|
+
}
|
|
4581
|
+
},
|
|
4582
|
+
{
|
|
4583
|
+
"abstract": true,
|
|
4584
|
+
"docs": {
|
|
4585
|
+
"stability": "experimental",
|
|
4586
|
+
"summary": "The physical name of the cluster."
|
|
4587
|
+
},
|
|
4588
|
+
"immutable": true,
|
|
4589
|
+
"locationInModule": {
|
|
4590
|
+
"filename": "lib/cluster.ts",
|
|
4591
|
+
"line": 42
|
|
4592
|
+
},
|
|
4593
|
+
"name": "clusterName",
|
|
4594
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ICluster",
|
|
4595
|
+
"type": {
|
|
4596
|
+
"primitive": "string"
|
|
4597
|
+
}
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"docs": {
|
|
4601
|
+
"stability": "experimental",
|
|
4602
|
+
"summary": "Manages connections for the cluster."
|
|
4603
|
+
},
|
|
4604
|
+
"immutable": true,
|
|
4605
|
+
"locationInModule": {
|
|
4606
|
+
"filename": "lib/cluster.ts",
|
|
4607
|
+
"line": 47
|
|
4608
|
+
},
|
|
4609
|
+
"name": "connections",
|
|
4610
|
+
"overrides": "aws-cdk-lib.aws_ec2.IConnectable",
|
|
4611
|
+
"type": {
|
|
4612
|
+
"fqn": "aws-cdk-lib.aws_ec2.Connections"
|
|
4613
|
+
}
|
|
4614
|
+
}
|
|
4615
|
+
],
|
|
4616
|
+
"symbolId": "lib/cluster:ClusterBase"
|
|
4617
|
+
},
|
|
4509
4618
|
"@aws-cdk/aws-msk-alpha.ClusterConfigurationInfo": {
|
|
4510
4619
|
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
4511
4620
|
"datatype": true,
|
|
@@ -4522,7 +4631,7 @@
|
|
|
4522
4631
|
"kind": "interface",
|
|
4523
4632
|
"locationInModule": {
|
|
4524
4633
|
"filename": "lib/cluster.ts",
|
|
4525
|
-
"line":
|
|
4634
|
+
"line": 205
|
|
4526
4635
|
},
|
|
4527
4636
|
"name": "ClusterConfigurationInfo",
|
|
4528
4637
|
"properties": [
|
|
@@ -4536,7 +4645,7 @@
|
|
|
4536
4645
|
"immutable": true,
|
|
4537
4646
|
"locationInModule": {
|
|
4538
4647
|
"filename": "lib/cluster.ts",
|
|
4539
|
-
"line":
|
|
4648
|
+
"line": 210
|
|
4540
4649
|
},
|
|
4541
4650
|
"name": "arn",
|
|
4542
4651
|
"type": {
|
|
@@ -4552,7 +4661,7 @@
|
|
|
4552
4661
|
"immutable": true,
|
|
4553
4662
|
"locationInModule": {
|
|
4554
4663
|
"filename": "lib/cluster.ts",
|
|
4555
|
-
"line":
|
|
4664
|
+
"line": 215
|
|
4556
4665
|
},
|
|
4557
4666
|
"name": "revision",
|
|
4558
4667
|
"type": {
|
|
@@ -4573,7 +4682,7 @@
|
|
|
4573
4682
|
"kind": "enum",
|
|
4574
4683
|
"locationInModule": {
|
|
4575
4684
|
"filename": "lib/cluster.ts",
|
|
4576
|
-
"line":
|
|
4685
|
+
"line": 223
|
|
4577
4686
|
},
|
|
4578
4687
|
"members": [
|
|
4579
4688
|
{
|
|
@@ -4623,7 +4732,7 @@
|
|
|
4623
4732
|
"kind": "interface",
|
|
4624
4733
|
"locationInModule": {
|
|
4625
4734
|
"filename": "lib/cluster.ts",
|
|
4626
|
-
"line":
|
|
4735
|
+
"line": 58
|
|
4627
4736
|
},
|
|
4628
4737
|
"name": "ClusterProps",
|
|
4629
4738
|
"properties": [
|
|
@@ -4636,7 +4745,7 @@
|
|
|
4636
4745
|
"immutable": true,
|
|
4637
4746
|
"locationInModule": {
|
|
4638
4747
|
"filename": "lib/cluster.ts",
|
|
4639
|
-
"line":
|
|
4748
|
+
"line": 62
|
|
4640
4749
|
},
|
|
4641
4750
|
"name": "clusterName",
|
|
4642
4751
|
"type": {
|
|
@@ -4652,7 +4761,7 @@
|
|
|
4652
4761
|
"immutable": true,
|
|
4653
4762
|
"locationInModule": {
|
|
4654
4763
|
"filename": "lib/cluster.ts",
|
|
4655
|
-
"line":
|
|
4764
|
+
"line": 67
|
|
4656
4765
|
},
|
|
4657
4766
|
"name": "kafkaVersion",
|
|
4658
4767
|
"type": {
|
|
@@ -4669,7 +4778,7 @@
|
|
|
4669
4778
|
"immutable": true,
|
|
4670
4779
|
"locationInModule": {
|
|
4671
4780
|
"filename": "lib/cluster.ts",
|
|
4672
|
-
"line":
|
|
4781
|
+
"line": 80
|
|
4673
4782
|
},
|
|
4674
4783
|
"name": "vpc",
|
|
4675
4784
|
"type": {
|
|
@@ -4687,7 +4796,7 @@
|
|
|
4687
4796
|
"immutable": true,
|
|
4688
4797
|
"locationInModule": {
|
|
4689
4798
|
"filename": "lib/cluster.ts",
|
|
4690
|
-
"line":
|
|
4799
|
+
"line": 157
|
|
4691
4800
|
},
|
|
4692
4801
|
"name": "clientAuthentication",
|
|
4693
4802
|
"optional": true,
|
|
@@ -4705,7 +4814,7 @@
|
|
|
4705
4814
|
"immutable": true,
|
|
4706
4815
|
"locationInModule": {
|
|
4707
4816
|
"filename": "lib/cluster.ts",
|
|
4708
|
-
"line":
|
|
4817
|
+
"line": 128
|
|
4709
4818
|
},
|
|
4710
4819
|
"name": "configurationInfo",
|
|
4711
4820
|
"optional": true,
|
|
@@ -4723,7 +4832,7 @@
|
|
|
4723
4832
|
"immutable": true,
|
|
4724
4833
|
"locationInModule": {
|
|
4725
4834
|
"filename": "lib/cluster.ts",
|
|
4726
|
-
"line":
|
|
4835
|
+
"line": 113
|
|
4727
4836
|
},
|
|
4728
4837
|
"name": "ebsStorageInfo",
|
|
4729
4838
|
"optional": true,
|
|
@@ -4741,7 +4850,7 @@
|
|
|
4741
4850
|
"immutable": true,
|
|
4742
4851
|
"locationInModule": {
|
|
4743
4852
|
"filename": "lib/cluster.ts",
|
|
4744
|
-
"line":
|
|
4853
|
+
"line": 149
|
|
4745
4854
|
},
|
|
4746
4855
|
"name": "encryptionInTransit",
|
|
4747
4856
|
"optional": true,
|
|
@@ -4760,7 +4869,7 @@
|
|
|
4760
4869
|
"immutable": true,
|
|
4761
4870
|
"locationInModule": {
|
|
4762
4871
|
"filename": "lib/cluster.ts",
|
|
4763
|
-
"line":
|
|
4872
|
+
"line": 98
|
|
4764
4873
|
},
|
|
4765
4874
|
"name": "instanceType",
|
|
4766
4875
|
"optional": true,
|
|
@@ -4778,7 +4887,7 @@
|
|
|
4778
4887
|
"immutable": true,
|
|
4779
4888
|
"locationInModule": {
|
|
4780
4889
|
"filename": "lib/cluster.ts",
|
|
4781
|
-
"line":
|
|
4890
|
+
"line": 142
|
|
4782
4891
|
},
|
|
4783
4892
|
"name": "logging",
|
|
4784
4893
|
"optional": true,
|
|
@@ -4796,7 +4905,7 @@
|
|
|
4796
4905
|
"immutable": true,
|
|
4797
4906
|
"locationInModule": {
|
|
4798
4907
|
"filename": "lib/cluster.ts",
|
|
4799
|
-
"line":
|
|
4908
|
+
"line": 135
|
|
4800
4909
|
},
|
|
4801
4910
|
"name": "monitoring",
|
|
4802
4911
|
"optional": true,
|
|
@@ -4814,7 +4923,7 @@
|
|
|
4814
4923
|
"immutable": true,
|
|
4815
4924
|
"locationInModule": {
|
|
4816
4925
|
"filename": "lib/cluster.ts",
|
|
4817
|
-
"line":
|
|
4926
|
+
"line": 74
|
|
4818
4927
|
},
|
|
4819
4928
|
"name": "numberOfBrokerNodes",
|
|
4820
4929
|
"optional": true,
|
|
@@ -4832,7 +4941,7 @@
|
|
|
4832
4941
|
"immutable": true,
|
|
4833
4942
|
"locationInModule": {
|
|
4834
4943
|
"filename": "lib/cluster.ts",
|
|
4835
|
-
"line":
|
|
4944
|
+
"line": 164
|
|
4836
4945
|
},
|
|
4837
4946
|
"name": "removalPolicy",
|
|
4838
4947
|
"optional": true,
|
|
@@ -4850,7 +4959,7 @@
|
|
|
4850
4959
|
"immutable": true,
|
|
4851
4960
|
"locationInModule": {
|
|
4852
4961
|
"filename": "lib/cluster.ts",
|
|
4853
|
-
"line":
|
|
4962
|
+
"line": 106
|
|
4854
4963
|
},
|
|
4855
4964
|
"name": "securityGroups",
|
|
4856
4965
|
"optional": true,
|
|
@@ -4874,7 +4983,7 @@
|
|
|
4874
4983
|
"immutable": true,
|
|
4875
4984
|
"locationInModule": {
|
|
4876
4985
|
"filename": "lib/cluster.ts",
|
|
4877
|
-
"line":
|
|
4986
|
+
"line": 121
|
|
4878
4987
|
},
|
|
4879
4988
|
"name": "storageMode",
|
|
4880
4989
|
"optional": true,
|
|
@@ -4893,7 +5002,7 @@
|
|
|
4893
5002
|
"immutable": true,
|
|
4894
5003
|
"locationInModule": {
|
|
4895
5004
|
"filename": "lib/cluster.ts",
|
|
4896
|
-
"line":
|
|
5005
|
+
"line": 90
|
|
4897
5006
|
},
|
|
4898
5007
|
"name": "vpcSubnets",
|
|
4899
5008
|
"optional": true,
|
|
@@ -4919,7 +5028,7 @@
|
|
|
4919
5028
|
"kind": "interface",
|
|
4920
5029
|
"locationInModule": {
|
|
4921
5030
|
"filename": "lib/cluster.ts",
|
|
4922
|
-
"line":
|
|
5031
|
+
"line": 170
|
|
4923
5032
|
},
|
|
4924
5033
|
"name": "EbsStorageInfo",
|
|
4925
5034
|
"properties": [
|
|
@@ -4933,7 +5042,7 @@
|
|
|
4933
5042
|
"immutable": true,
|
|
4934
5043
|
"locationInModule": {
|
|
4935
5044
|
"filename": "lib/cluster.ts",
|
|
4936
|
-
"line":
|
|
5045
|
+
"line": 183
|
|
4937
5046
|
},
|
|
4938
5047
|
"name": "encryptionKey",
|
|
4939
5048
|
"optional": true,
|
|
@@ -4951,7 +5060,7 @@
|
|
|
4951
5060
|
"immutable": true,
|
|
4952
5061
|
"locationInModule": {
|
|
4953
5062
|
"filename": "lib/cluster.ts",
|
|
4954
|
-
"line":
|
|
5063
|
+
"line": 176
|
|
4955
5064
|
},
|
|
4956
5065
|
"name": "volumeSize",
|
|
4957
5066
|
"optional": true,
|
|
@@ -4978,7 +5087,7 @@
|
|
|
4978
5087
|
"kind": "interface",
|
|
4979
5088
|
"locationInModule": {
|
|
4980
5089
|
"filename": "lib/cluster.ts",
|
|
4981
|
-
"line":
|
|
5090
|
+
"line": 341
|
|
4982
5091
|
},
|
|
4983
5092
|
"name": "EncryptionInTransitConfig",
|
|
4984
5093
|
"properties": [
|
|
@@ -4992,7 +5101,7 @@
|
|
|
4992
5101
|
"immutable": true,
|
|
4993
5102
|
"locationInModule": {
|
|
4994
5103
|
"filename": "lib/cluster.ts",
|
|
4995
|
-
"line":
|
|
5104
|
+
"line": 347
|
|
4996
5105
|
},
|
|
4997
5106
|
"name": "clientBroker",
|
|
4998
5107
|
"optional": true,
|
|
@@ -5010,7 +5119,7 @@
|
|
|
5010
5119
|
"immutable": true,
|
|
5011
5120
|
"locationInModule": {
|
|
5012
5121
|
"filename": "lib/cluster.ts",
|
|
5013
|
-
"line":
|
|
5122
|
+
"line": 354
|
|
5014
5123
|
},
|
|
5015
5124
|
"name": "enableInCluster",
|
|
5016
5125
|
"optional": true,
|
|
@@ -5035,7 +5144,7 @@
|
|
|
5035
5144
|
"kind": "interface",
|
|
5036
5145
|
"locationInModule": {
|
|
5037
5146
|
"filename": "lib/cluster.ts",
|
|
5038
|
-
"line":
|
|
5147
|
+
"line": 21
|
|
5039
5148
|
},
|
|
5040
5149
|
"name": "ICluster",
|
|
5041
5150
|
"properties": [
|
|
@@ -5051,7 +5160,7 @@
|
|
|
5051
5160
|
"immutable": true,
|
|
5052
5161
|
"locationInModule": {
|
|
5053
5162
|
"filename": "lib/cluster.ts",
|
|
5054
|
-
"line":
|
|
5163
|
+
"line": 27
|
|
5055
5164
|
},
|
|
5056
5165
|
"name": "clusterArn",
|
|
5057
5166
|
"type": {
|
|
@@ -5070,7 +5179,7 @@
|
|
|
5070
5179
|
"immutable": true,
|
|
5071
5180
|
"locationInModule": {
|
|
5072
5181
|
"filename": "lib/cluster.ts",
|
|
5073
|
-
"line":
|
|
5182
|
+
"line": 34
|
|
5074
5183
|
},
|
|
5075
5184
|
"name": "clusterName",
|
|
5076
5185
|
"type": {
|
|
@@ -5695,7 +5804,7 @@
|
|
|
5695
5804
|
"kind": "interface",
|
|
5696
5805
|
"locationInModule": {
|
|
5697
5806
|
"filename": "lib/cluster.ts",
|
|
5698
|
-
"line":
|
|
5807
|
+
"line": 248
|
|
5699
5808
|
},
|
|
5700
5809
|
"name": "MonitoringConfiguration",
|
|
5701
5810
|
"properties": [
|
|
@@ -5709,7 +5818,7 @@
|
|
|
5709
5818
|
"immutable": true,
|
|
5710
5819
|
"locationInModule": {
|
|
5711
5820
|
"filename": "lib/cluster.ts",
|
|
5712
|
-
"line":
|
|
5821
|
+
"line": 254
|
|
5713
5822
|
},
|
|
5714
5823
|
"name": "clusterMonitoringLevel",
|
|
5715
5824
|
"optional": true,
|
|
@@ -5727,7 +5836,7 @@
|
|
|
5727
5836
|
"immutable": true,
|
|
5728
5837
|
"locationInModule": {
|
|
5729
5838
|
"filename": "lib/cluster.ts",
|
|
5730
|
-
"line":
|
|
5839
|
+
"line": 261
|
|
5731
5840
|
},
|
|
5732
5841
|
"name": "enablePrometheusJmxExporter",
|
|
5733
5842
|
"optional": true,
|
|
@@ -5746,7 +5855,7 @@
|
|
|
5746
5855
|
"immutable": true,
|
|
5747
5856
|
"locationInModule": {
|
|
5748
5857
|
"filename": "lib/cluster.ts",
|
|
5749
|
-
"line":
|
|
5858
|
+
"line": 270
|
|
5750
5859
|
},
|
|
5751
5860
|
"name": "enablePrometheusNodeExporter",
|
|
5752
5861
|
"optional": true,
|
|
@@ -5772,7 +5881,7 @@
|
|
|
5772
5881
|
"kind": "interface",
|
|
5773
5882
|
"locationInModule": {
|
|
5774
5883
|
"filename": "lib/cluster.ts",
|
|
5775
|
-
"line":
|
|
5884
|
+
"line": 302
|
|
5776
5885
|
},
|
|
5777
5886
|
"name": "S3LoggingConfiguration",
|
|
5778
5887
|
"properties": [
|
|
@@ -5785,7 +5894,7 @@
|
|
|
5785
5894
|
"immutable": true,
|
|
5786
5895
|
"locationInModule": {
|
|
5787
5896
|
"filename": "lib/cluster.ts",
|
|
5788
|
-
"line":
|
|
5897
|
+
"line": 306
|
|
5789
5898
|
},
|
|
5790
5899
|
"name": "bucket",
|
|
5791
5900
|
"type": {
|
|
@@ -5802,7 +5911,7 @@
|
|
|
5802
5911
|
"immutable": true,
|
|
5803
5912
|
"locationInModule": {
|
|
5804
5913
|
"filename": "lib/cluster.ts",
|
|
5805
|
-
"line":
|
|
5914
|
+
"line": 313
|
|
5806
5915
|
},
|
|
5807
5916
|
"name": "prefix",
|
|
5808
5917
|
"optional": true,
|
|
@@ -5828,7 +5937,7 @@
|
|
|
5828
5937
|
"kind": "interface",
|
|
5829
5938
|
"locationInModule": {
|
|
5830
5939
|
"filename": "lib/cluster.ts",
|
|
5831
|
-
"line":
|
|
5940
|
+
"line": 360
|
|
5832
5941
|
},
|
|
5833
5942
|
"name": "SaslAuthProps",
|
|
5834
5943
|
"properties": [
|
|
@@ -5842,7 +5951,7 @@
|
|
|
5842
5951
|
"immutable": true,
|
|
5843
5952
|
"locationInModule": {
|
|
5844
5953
|
"filename": "lib/cluster.ts",
|
|
5845
|
-
"line":
|
|
5954
|
+
"line": 373
|
|
5846
5955
|
},
|
|
5847
5956
|
"name": "iam",
|
|
5848
5957
|
"optional": true,
|
|
@@ -5861,7 +5970,7 @@
|
|
|
5861
5970
|
"immutable": true,
|
|
5862
5971
|
"locationInModule": {
|
|
5863
5972
|
"filename": "lib/cluster.ts",
|
|
5864
|
-
"line":
|
|
5973
|
+
"line": 383
|
|
5865
5974
|
},
|
|
5866
5975
|
"name": "key",
|
|
5867
5976
|
"optional": true,
|
|
@@ -5879,7 +5988,7 @@
|
|
|
5879
5988
|
"immutable": true,
|
|
5880
5989
|
"locationInModule": {
|
|
5881
5990
|
"filename": "lib/cluster.ts",
|
|
5882
|
-
"line":
|
|
5991
|
+
"line": 366
|
|
5883
5992
|
},
|
|
5884
5993
|
"name": "scram",
|
|
5885
5994
|
"optional": true,
|
|
@@ -5909,11 +6018,196 @@
|
|
|
5909
6018
|
"kind": "interface",
|
|
5910
6019
|
"locationInModule": {
|
|
5911
6020
|
"filename": "lib/cluster.ts",
|
|
5912
|
-
"line":
|
|
6021
|
+
"line": 401
|
|
5913
6022
|
},
|
|
5914
6023
|
"name": "SaslTlsAuthProps",
|
|
5915
6024
|
"symbolId": "lib/cluster:SaslTlsAuthProps"
|
|
5916
6025
|
},
|
|
6026
|
+
"@aws-cdk/aws-msk-alpha.ServerlessCluster": {
|
|
6027
|
+
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
6028
|
+
"base": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
6029
|
+
"docs": {
|
|
6030
|
+
"custom": {
|
|
6031
|
+
"resource": "AWS::MSK::ServerlessCluster",
|
|
6032
|
+
"exampleMetadata": "infused"
|
|
6033
|
+
},
|
|
6034
|
+
"stability": "experimental",
|
|
6035
|
+
"summary": "Create a MSK Serverless Cluster.",
|
|
6036
|
+
"example": "declare const vpc: ec2.Vpc;\n\nconst serverlessCluster = new msk.ServerlessCluster(this, 'ServerlessCluster', {\n clusterName: 'MyServerlessCluster',\n vpcConfigs: [\n { vpc },\n ],\n});"
|
|
6037
|
+
},
|
|
6038
|
+
"fqn": "@aws-cdk/aws-msk-alpha.ServerlessCluster",
|
|
6039
|
+
"initializer": {
|
|
6040
|
+
"docs": {
|
|
6041
|
+
"stability": "experimental"
|
|
6042
|
+
},
|
|
6043
|
+
"locationInModule": {
|
|
6044
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6045
|
+
"line": 79
|
|
6046
|
+
},
|
|
6047
|
+
"parameters": [
|
|
6048
|
+
{
|
|
6049
|
+
"name": "scope",
|
|
6050
|
+
"type": {
|
|
6051
|
+
"fqn": "constructs.Construct"
|
|
6052
|
+
}
|
|
6053
|
+
},
|
|
6054
|
+
{
|
|
6055
|
+
"name": "id",
|
|
6056
|
+
"type": {
|
|
6057
|
+
"primitive": "string"
|
|
6058
|
+
}
|
|
6059
|
+
},
|
|
6060
|
+
{
|
|
6061
|
+
"name": "props",
|
|
6062
|
+
"type": {
|
|
6063
|
+
"fqn": "@aws-cdk/aws-msk-alpha.ServerlessClusterProps"
|
|
6064
|
+
}
|
|
6065
|
+
}
|
|
6066
|
+
]
|
|
6067
|
+
},
|
|
6068
|
+
"kind": "class",
|
|
6069
|
+
"locationInModule": {
|
|
6070
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6071
|
+
"line": 57
|
|
6072
|
+
},
|
|
6073
|
+
"methods": [
|
|
6074
|
+
{
|
|
6075
|
+
"docs": {
|
|
6076
|
+
"stability": "experimental",
|
|
6077
|
+
"summary": "Reference an existing cluster, defined outside of the CDK code, by name."
|
|
6078
|
+
},
|
|
6079
|
+
"locationInModule": {
|
|
6080
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6081
|
+
"line": 61
|
|
6082
|
+
},
|
|
6083
|
+
"name": "fromClusterArn",
|
|
6084
|
+
"parameters": [
|
|
6085
|
+
{
|
|
6086
|
+
"name": "scope",
|
|
6087
|
+
"type": {
|
|
6088
|
+
"fqn": "constructs.Construct"
|
|
6089
|
+
}
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"name": "id",
|
|
6093
|
+
"type": {
|
|
6094
|
+
"primitive": "string"
|
|
6095
|
+
}
|
|
6096
|
+
},
|
|
6097
|
+
{
|
|
6098
|
+
"name": "clusterArn",
|
|
6099
|
+
"type": {
|
|
6100
|
+
"primitive": "string"
|
|
6101
|
+
}
|
|
6102
|
+
}
|
|
6103
|
+
],
|
|
6104
|
+
"returns": {
|
|
6105
|
+
"type": {
|
|
6106
|
+
"fqn": "@aws-cdk/aws-msk-alpha.ICluster"
|
|
6107
|
+
}
|
|
6108
|
+
},
|
|
6109
|
+
"static": true
|
|
6110
|
+
}
|
|
6111
|
+
],
|
|
6112
|
+
"name": "ServerlessCluster",
|
|
6113
|
+
"properties": [
|
|
6114
|
+
{
|
|
6115
|
+
"docs": {
|
|
6116
|
+
"stability": "experimental",
|
|
6117
|
+
"summary": "The ARN of cluster."
|
|
6118
|
+
},
|
|
6119
|
+
"immutable": true,
|
|
6120
|
+
"locationInModule": {
|
|
6121
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6122
|
+
"line": 74
|
|
6123
|
+
},
|
|
6124
|
+
"name": "clusterArn",
|
|
6125
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
6126
|
+
"type": {
|
|
6127
|
+
"primitive": "string"
|
|
6128
|
+
}
|
|
6129
|
+
},
|
|
6130
|
+
{
|
|
6131
|
+
"docs": {
|
|
6132
|
+
"stability": "experimental",
|
|
6133
|
+
"summary": "The physical name of the cluster."
|
|
6134
|
+
},
|
|
6135
|
+
"immutable": true,
|
|
6136
|
+
"locationInModule": {
|
|
6137
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6138
|
+
"line": 75
|
|
6139
|
+
},
|
|
6140
|
+
"name": "clusterName",
|
|
6141
|
+
"overrides": "@aws-cdk/aws-msk-alpha.ClusterBase",
|
|
6142
|
+
"type": {
|
|
6143
|
+
"primitive": "string"
|
|
6144
|
+
}
|
|
6145
|
+
}
|
|
6146
|
+
],
|
|
6147
|
+
"symbolId": "lib/serverless-cluster:ServerlessCluster"
|
|
6148
|
+
},
|
|
6149
|
+
"@aws-cdk/aws-msk-alpha.ServerlessClusterProps": {
|
|
6150
|
+
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
6151
|
+
"datatype": true,
|
|
6152
|
+
"docs": {
|
|
6153
|
+
"stability": "experimental",
|
|
6154
|
+
"summary": "Properties for a MSK Serverless Cluster.",
|
|
6155
|
+
"example": "declare const vpc: ec2.Vpc;\n\nconst serverlessCluster = new msk.ServerlessCluster(this, 'ServerlessCluster', {\n clusterName: 'MyServerlessCluster',\n vpcConfigs: [\n { vpc },\n ],\n});",
|
|
6156
|
+
"custom": {
|
|
6157
|
+
"exampleMetadata": "infused"
|
|
6158
|
+
}
|
|
6159
|
+
},
|
|
6160
|
+
"fqn": "@aws-cdk/aws-msk-alpha.ServerlessClusterProps",
|
|
6161
|
+
"kind": "interface",
|
|
6162
|
+
"locationInModule": {
|
|
6163
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6164
|
+
"line": 11
|
|
6165
|
+
},
|
|
6166
|
+
"name": "ServerlessClusterProps",
|
|
6167
|
+
"properties": [
|
|
6168
|
+
{
|
|
6169
|
+
"abstract": true,
|
|
6170
|
+
"docs": {
|
|
6171
|
+
"remarks": "You can specify up to 5 VPC configurations.",
|
|
6172
|
+
"stability": "experimental",
|
|
6173
|
+
"summary": "The configuration of the Amazon VPCs for the cluster."
|
|
6174
|
+
},
|
|
6175
|
+
"immutable": true,
|
|
6176
|
+
"locationInModule": {
|
|
6177
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6178
|
+
"line": 23
|
|
6179
|
+
},
|
|
6180
|
+
"name": "vpcConfigs",
|
|
6181
|
+
"type": {
|
|
6182
|
+
"collection": {
|
|
6183
|
+
"elementtype": {
|
|
6184
|
+
"fqn": "@aws-cdk/aws-msk-alpha.VpcConfig"
|
|
6185
|
+
},
|
|
6186
|
+
"kind": "array"
|
|
6187
|
+
}
|
|
6188
|
+
}
|
|
6189
|
+
},
|
|
6190
|
+
{
|
|
6191
|
+
"abstract": true,
|
|
6192
|
+
"docs": {
|
|
6193
|
+
"default": "- auto generate",
|
|
6194
|
+
"stability": "experimental",
|
|
6195
|
+
"summary": "The physical name of the cluster."
|
|
6196
|
+
},
|
|
6197
|
+
"immutable": true,
|
|
6198
|
+
"locationInModule": {
|
|
6199
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6200
|
+
"line": 17
|
|
6201
|
+
},
|
|
6202
|
+
"name": "clusterName",
|
|
6203
|
+
"optional": true,
|
|
6204
|
+
"type": {
|
|
6205
|
+
"primitive": "string"
|
|
6206
|
+
}
|
|
6207
|
+
}
|
|
6208
|
+
],
|
|
6209
|
+
"symbolId": "lib/serverless-cluster:ServerlessClusterProps"
|
|
6210
|
+
},
|
|
5917
6211
|
"@aws-cdk/aws-msk-alpha.StorageMode": {
|
|
5918
6212
|
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
5919
6213
|
"docs": {
|
|
@@ -5928,7 +6222,7 @@
|
|
|
5928
6222
|
"kind": "enum",
|
|
5929
6223
|
"locationInModule": {
|
|
5930
6224
|
"filename": "lib/cluster.ts",
|
|
5931
|
-
"line":
|
|
6225
|
+
"line": 189
|
|
5932
6226
|
},
|
|
5933
6227
|
"members": [
|
|
5934
6228
|
{
|
|
@@ -5964,7 +6258,7 @@
|
|
|
5964
6258
|
"kind": "interface",
|
|
5965
6259
|
"locationInModule": {
|
|
5966
6260
|
"filename": "lib/cluster.ts",
|
|
5967
|
-
"line":
|
|
6261
|
+
"line": 389
|
|
5968
6262
|
},
|
|
5969
6263
|
"name": "TlsAuthProps",
|
|
5970
6264
|
"properties": [
|
|
@@ -5978,7 +6272,7 @@
|
|
|
5978
6272
|
"immutable": true,
|
|
5979
6273
|
"locationInModule": {
|
|
5980
6274
|
"filename": "lib/cluster.ts",
|
|
5981
|
-
"line":
|
|
6275
|
+
"line": 395
|
|
5982
6276
|
},
|
|
5983
6277
|
"name": "certificateAuthorities",
|
|
5984
6278
|
"optional": true,
|
|
@@ -5993,8 +6287,89 @@
|
|
|
5993
6287
|
}
|
|
5994
6288
|
],
|
|
5995
6289
|
"symbolId": "lib/cluster:TlsAuthProps"
|
|
6290
|
+
},
|
|
6291
|
+
"@aws-cdk/aws-msk-alpha.VpcConfig": {
|
|
6292
|
+
"assembly": "@aws-cdk/aws-msk-alpha",
|
|
6293
|
+
"datatype": true,
|
|
6294
|
+
"docs": {
|
|
6295
|
+
"stability": "experimental",
|
|
6296
|
+
"summary": "The configuration of the Amazon VPCs for the cluster.",
|
|
6297
|
+
"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_ec2 as ec2 } from 'aws-cdk-lib';\n\ndeclare const securityGroup: ec2.SecurityGroup;\ndeclare const subnet: ec2.Subnet;\ndeclare const subnetFilter: ec2.SubnetFilter;\ndeclare const vpc: ec2.Vpc;\nconst vpcConfig: msk_alpha.VpcConfig = {\n vpc: vpc,\n\n // the properties below are optional\n securityGroups: [securityGroup],\n vpcSubnets: {\n availabilityZones: ['availabilityZones'],\n onePerAz: false,\n subnetFilters: [subnetFilter],\n subnetGroupName: 'subnetGroupName',\n subnets: [subnet],\n subnetType: ec2.SubnetType.PRIVATE_ISOLATED,\n },\n};",
|
|
6298
|
+
"custom": {
|
|
6299
|
+
"exampleMetadata": "fixture=_generated"
|
|
6300
|
+
}
|
|
6301
|
+
},
|
|
6302
|
+
"fqn": "@aws-cdk/aws-msk-alpha.VpcConfig",
|
|
6303
|
+
"kind": "interface",
|
|
6304
|
+
"locationInModule": {
|
|
6305
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6306
|
+
"line": 29
|
|
6307
|
+
},
|
|
6308
|
+
"name": "VpcConfig",
|
|
6309
|
+
"properties": [
|
|
6310
|
+
{
|
|
6311
|
+
"abstract": true,
|
|
6312
|
+
"docs": {
|
|
6313
|
+
"remarks": "Must have at least 2 subnets in two different AZs.",
|
|
6314
|
+
"stability": "experimental",
|
|
6315
|
+
"summary": "Defines the virtual networking environment for this cluster."
|
|
6316
|
+
},
|
|
6317
|
+
"immutable": true,
|
|
6318
|
+
"locationInModule": {
|
|
6319
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6320
|
+
"line": 34
|
|
6321
|
+
},
|
|
6322
|
+
"name": "vpc",
|
|
6323
|
+
"type": {
|
|
6324
|
+
"fqn": "aws-cdk-lib.aws_ec2.IVpc"
|
|
6325
|
+
}
|
|
6326
|
+
},
|
|
6327
|
+
{
|
|
6328
|
+
"abstract": true,
|
|
6329
|
+
"docs": {
|
|
6330
|
+
"default": "- create new security group",
|
|
6331
|
+
"remarks": "You can specify up to 5 security groups.",
|
|
6332
|
+
"stability": "experimental",
|
|
6333
|
+
"summary": "The security groups associated with the cluster."
|
|
6334
|
+
},
|
|
6335
|
+
"immutable": true,
|
|
6336
|
+
"locationInModule": {
|
|
6337
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6338
|
+
"line": 49
|
|
6339
|
+
},
|
|
6340
|
+
"name": "securityGroups",
|
|
6341
|
+
"optional": true,
|
|
6342
|
+
"type": {
|
|
6343
|
+
"collection": {
|
|
6344
|
+
"elementtype": {
|
|
6345
|
+
"fqn": "aws-cdk-lib.aws_ec2.ISecurityGroup"
|
|
6346
|
+
},
|
|
6347
|
+
"kind": "array"
|
|
6348
|
+
}
|
|
6349
|
+
}
|
|
6350
|
+
},
|
|
6351
|
+
{
|
|
6352
|
+
"abstract": true,
|
|
6353
|
+
"docs": {
|
|
6354
|
+
"default": "- the Vpc default strategy if not specified.",
|
|
6355
|
+
"stability": "experimental",
|
|
6356
|
+
"summary": "The subnets associated with the cluster."
|
|
6357
|
+
},
|
|
6358
|
+
"immutable": true,
|
|
6359
|
+
"locationInModule": {
|
|
6360
|
+
"filename": "lib/serverless-cluster.ts",
|
|
6361
|
+
"line": 41
|
|
6362
|
+
},
|
|
6363
|
+
"name": "vpcSubnets",
|
|
6364
|
+
"optional": true,
|
|
6365
|
+
"type": {
|
|
6366
|
+
"fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
|
|
6367
|
+
}
|
|
6368
|
+
}
|
|
6369
|
+
],
|
|
6370
|
+
"symbolId": "lib/serverless-cluster:VpcConfig"
|
|
5996
6371
|
}
|
|
5997
6372
|
},
|
|
5998
|
-
"version": "2.
|
|
6373
|
+
"version": "2.178.0-alpha.0",
|
|
5999
6374
|
"fingerprint": "**********"
|
|
6000
6375
|
}
|