Show / Hide Table of Contents

Class CfnConnectorPropsMixin.KafkaClusterProperty

The details of the Apache Kafka cluster to which the connector is connected.

Inheritance
object
CfnConnectorPropsMixin.KafkaClusterProperty
Implements
CfnConnectorPropsMixin.IKafkaClusterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-kafkacluster.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-kafkacluster.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-kafkacluster.html#cfn-kafkaconnect-connector-kafkacluster-apachekafkacluster

Type union: either IResolvable or CfnConnectorPropsMixin.IApacheKafkaClusterProperty

Implements

CfnConnectorPropsMixin.IKafkaClusterProperty
Back to top Generated by DocFX