Show / Hide Table of Contents

Interface CfnLocationHDFS.INameNodeProperty

The NameNode of the Hadoop Distributed File System (HDFS).

Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnLocationHDFS.INameNodeProperty
Syntax (vb)
Public Interface CfnLocationHDFS.INameNodeProperty
Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-namenode.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DataSync;

             var nameNodeProperty = new NameNodeProperty {
                 Hostname = "hostname",
                 Port = 123
             };

Synopsis

Properties

Hostname

The hostname of the NameNode in the HDFS cluster.

Port

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

Properties

Hostname

The hostname of the NameNode in the HDFS cluster.

string Hostname { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-namenode.html#cfn-datasync-locationhdfs-namenode-hostname

Port

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

double Port { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-namenode.html#cfn-datasync-locationhdfs-namenode-port

Back to top Generated by DocFX