Interface HdfsNameNode.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HdfsNameNode.Builder,HdfsNameNode>,SdkBuilder<HdfsNameNode.Builder,HdfsNameNode>,SdkPojo
- Enclosing class:
- HdfsNameNode
public static interface HdfsNameNode.Builder extends SdkPojo, CopyableBuilder<HdfsNameNode.Builder,HdfsNameNode>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HdfsNameNode.Builderhostname(String hostname)The hostname of the NameNode in the HDFS cluster.HdfsNameNode.Builderport(Integer port)The port that the NameNode uses to listen to client requests.-
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, sdkFields
-
-
-
-
Method Detail
-
hostname
HdfsNameNode.Builder hostname(String hostname)
The hostname of the NameNode in the HDFS cluster. This value is the IP address or Domain Name Service (DNS) name of the NameNode. An agent that's installed on-premises uses this hostname to communicate with the NameNode in the network.
- Parameters:
hostname- The hostname of the NameNode in the HDFS cluster. This value is the IP address or Domain Name Service (DNS) name of the NameNode. An agent that's installed on-premises uses this hostname to communicate with the NameNode in the network.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
HdfsNameNode.Builder port(Integer port)
The port that the NameNode uses to listen to client requests.
- Parameters:
port- The port that the NameNode uses to listen to client requests.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-