aws-cdk-lib.aws_datasync.CfnLocationHDFS.NameNodeProperty

interface NameNodeProperty

LanguageType name
.NETAmazon.CDK.AWS.DataSync.CfnLocationHDFS.NameNodeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationHDFS_NameNodeProperty
Javasoftware.amazon.awscdk.services.datasync.CfnLocationHDFS.NameNodeProperty
Pythonaws_cdk.aws_datasync.CfnLocationHDFS.NameNodeProperty
TypeScript aws-cdk-lib » aws_datasync » CfnLocationHDFS » NameNodeProperty

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 { aws_datasync as datasync } from 'aws-cdk-lib';
const nameNodeProperty: datasync.CfnLocationHDFS.NameNodeProperty = {
  hostname: 'hostname',
  port: 123,
};

Properties

NameTypeDescription
hostnamestringThe hostname of the NameNode in the HDFS cluster.
portnumberThe port that the NameNode uses to listen to client requests.

hostname

Type: string

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.


port

Type: number

The port that the NameNode uses to listen to client requests.