Interface BrokerNodeInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BrokerNodeInfo.Builder,BrokerNodeInfo>,SdkBuilder<BrokerNodeInfo.Builder,BrokerNodeInfo>,SdkPojo
- Enclosing class:
- BrokerNodeInfo
public static interface BrokerNodeInfo.Builder extends SdkPojo, CopyableBuilder<BrokerNodeInfo.Builder,BrokerNodeInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BrokerNodeInfo.BuilderattachedENIId(String attachedENIId)The attached elastic network interface of the broker.BrokerNodeInfo.BuilderbrokerId(Double brokerId)The ID of the broker.BrokerNodeInfo.BuilderclientSubnet(String clientSubnet)The client subnet to which this broker node belongs.BrokerNodeInfo.BuilderclientVpcIpAddress(String clientVpcIpAddress)The virtual private cloud (VPC) of the client.default BrokerNodeInfo.BuildercurrentBrokerSoftwareInfo(Consumer<BrokerSoftwareInfo.Builder> currentBrokerSoftwareInfo)Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.BrokerNodeInfo.BuildercurrentBrokerSoftwareInfo(BrokerSoftwareInfo currentBrokerSoftwareInfo)Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.BrokerNodeInfo.Builderendpoints(String... endpoints)Endpoints for accessing the broker.BrokerNodeInfo.Builderendpoints(Collection<String> endpoints)Endpoints for accessing the broker.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
attachedENIId
BrokerNodeInfo.Builder attachedENIId(String attachedENIId)
The attached elastic network interface of the broker.
- Parameters:
attachedENIId-The attached elastic network interface of the broker.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
brokerId
BrokerNodeInfo.Builder brokerId(Double brokerId)
The ID of the broker.
- Parameters:
brokerId-The ID of the broker.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientSubnet
BrokerNodeInfo.Builder clientSubnet(String clientSubnet)
The client subnet to which this broker node belongs.
- Parameters:
clientSubnet-The client subnet to which this broker node belongs.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientVpcIpAddress
BrokerNodeInfo.Builder clientVpcIpAddress(String clientVpcIpAddress)
The virtual private cloud (VPC) of the client.
- Parameters:
clientVpcIpAddress-The virtual private cloud (VPC) of the client.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
currentBrokerSoftwareInfo
BrokerNodeInfo.Builder currentBrokerSoftwareInfo(BrokerSoftwareInfo currentBrokerSoftwareInfo)
Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
- Parameters:
currentBrokerSoftwareInfo-Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
currentBrokerSoftwareInfo
default BrokerNodeInfo.Builder currentBrokerSoftwareInfo(Consumer<BrokerSoftwareInfo.Builder> currentBrokerSoftwareInfo)
Information about the version of software currently deployed on the Apache Kafka brokers in the cluster.
This is a convenience method that creates an instance of theBrokerSoftwareInfo.Builderavoiding the need to create one manually viaBrokerSoftwareInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocurrentBrokerSoftwareInfo(BrokerSoftwareInfo).- Parameters:
currentBrokerSoftwareInfo- a consumer that will call methods onBrokerSoftwareInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
currentBrokerSoftwareInfo(BrokerSoftwareInfo)
-
endpoints
BrokerNodeInfo.Builder endpoints(Collection<String> endpoints)
Endpoints for accessing the broker.
- Parameters:
endpoints-Endpoints for accessing the broker.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpoints
BrokerNodeInfo.Builder endpoints(String... endpoints)
Endpoints for accessing the broker.
- Parameters:
endpoints-Endpoints for accessing the broker.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-