public static interface CfnLocationHDFS.NameNodeProperty
The NameNode manages the file system's namespace and performs operations such as opening, closing, and renaming files and directories. The NameNode also contains the information to map blocks of data to the DataNodes.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.datasync.*; NameNodeProperty nameNodeProperty = NameNodeProperty.builder() .hostname("hostname") .port(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnLocationHDFS.NameNodeProperty.Builder
A builder for
CfnLocationHDFS.NameNodeProperty |
static class |
CfnLocationHDFS.NameNodeProperty.Jsii$Proxy
An implementation for
CfnLocationHDFS.NameNodeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnLocationHDFS.NameNodeProperty.Builder |
builder() |
java.lang.String |
getHostname()
The hostname of the NameNode in the HDFS cluster.
|
java.lang.Number |
getPort()
The port that the NameNode uses to listen to client requests.
|
java.lang.String getHostname()
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.
java.lang.Number getPort()
static CfnLocationHDFS.NameNodeProperty.Builder builder()