Interface CfnLocationHDFS.NameNodeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLocationHDFS.NameNodeProperty.Jsii$Proxy
Enclosing class:
CfnLocationHDFS

@Stability(Stable) public static interface CfnLocationHDFS.NameNodeProperty extends software.amazon.jsii.JsiiSerializable
The NameNode of the Hadoop Distributed File System (HDFS).

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();
 

See Also: