interface KafkaClusterClientVpcConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnReplicatorPropsMixin.KafkaClusterClientVpcConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnReplicatorPropsMixin_KafkaClusterClientVpcConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnReplicatorPropsMixin.KafkaClusterClientVpcConfigProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnReplicatorPropsMixin.KafkaClusterClientVpcConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnReplicatorPropsMixin » KafkaClusterClientVpcConfigProperty |
Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const kafkaClusterClientVpcConfigProperty: msk_mixins.CfnReplicatorPropsMixin.KafkaClusterClientVpcConfigProperty = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The security groups to attach to the ENIs for the broker nodes. |
| subnet | string[] | The list of subnets in the client VPC to connect to. |
securityGroupIds?
Type:
string[]
(optional)
The security groups to attach to the ENIs for the broker nodes.
subnetIds?
Type:
string[]
(optional)
The list of subnets in the client VPC to connect to.

.NET
Go
Java
Python
TypeScript