Class CfnConnectorPropsMixin.KafkaClusterProperty
The details of the Apache Kafka cluster to which the connector is connected.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorPropsMixin.KafkaClusterProperty : CfnConnectorPropsMixin.IKafkaClusterProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.KafkaClusterProperty Implements CfnConnectorPropsMixin.IKafkaClusterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect;
var kafkaClusterProperty = new KafkaClusterProperty {
ApacheKafkaCluster = new ApacheKafkaClusterProperty {
BootstrapServers = "bootstrapServers",
Vpc = new VpcProperty {
SecurityGroups = new [] { "securityGroups" },
Subnets = new [] { "subnets" }
}
}
};
Synopsis
Constructors
| KafkaClusterProperty() | The details of the Apache Kafka cluster to which the connector is connected. |
Properties
| ApacheKafkaCluster | The Apache Kafka cluster to which the connector is connected. |
Constructors
KafkaClusterProperty()
The details of the Apache Kafka cluster to which the connector is connected.
public KafkaClusterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect;
var kafkaClusterProperty = new KafkaClusterProperty {
ApacheKafkaCluster = new ApacheKafkaClusterProperty {
BootstrapServers = "bootstrapServers",
Vpc = new VpcProperty {
SecurityGroups = new [] { "securityGroups" },
Subnets = new [] { "subnets" }
}
}
};
Properties
ApacheKafkaCluster
The Apache Kafka cluster to which the connector is connected.
public object? ApacheKafkaCluster { get; set; }