Class CreateKafkaBootstrapServer
Represents a Kafka bootstrap server with host name, optional port defaults to 9092.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateKafkaBootstrapServer
Properties
Host
Declaration
[Required(ErrorMessage = "Host is required.")]
[JsonProperty(PropertyName = "host")]
public string Host { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name or address of a host. |
Remarks
Required
Port
Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The port of an endpoint usually specified for a connection. |