Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateLocationHdfsRequest

import type { UpdateLocationHdfsRequest } from "https://aws-api.deno.dev/v0.4/services/datasync.ts?docs=full";
interface UpdateLocationHdfsRequest {
AgentArns?: string[] | null;
AuthenticationType?: HdfsAuthenticationType | null;
BlockSize?: number | null;
KerberosKeytab?: Uint8Array | string | null;
KerberosKrb5Conf?: Uint8Array | string | null;
KerberosPrincipal?: string | null;
KmsKeyProviderUri?: string | null;
LocationArn: string;
NameNodes?: HdfsNameNode[] | null;
QopConfiguration?: QopConfiguration | null;
ReplicationFactor?: number | null;
SimpleUser?: string | null;
Subdirectory?: string | null;
}

§Properties

§
AgentArns?: string[] | null
[src]

The ARNs of the agents that are used to connect to the HDFS cluster.

§
AuthenticationType?: HdfsAuthenticationType | null
[src]

The type of authentication used to determine the identity of the user.

§
BlockSize?: number | null
[src]

The size of the data blocks to write into the HDFS cluster.

§
KerberosKeytab?: Uint8Array | string | null
[src]

The Kerberos key table (keytab) that contains mappings between the defined Kerberos principal and the encrypted keys. You can load the keytab from a file by providing the file's address. If you use the CLI, it performs base64 encoding for you. Otherwise, provide the base64-encoded text.

§
KerberosKrb5Conf?: Uint8Array | string | null
[src]

The krb5.conf file that contains the Kerberos configuration information. You can load the krb5.conf file by providing the file's address. If you're using the CLI, it performs the base64 encoding for you. Otherwise, provide the base64-encoded text.

§
KerberosPrincipal?: string | null
[src]

The Kerberos principal with access to the files and folders on the HDFS cluster.

§
KmsKeyProviderUri?: string | null
[src]

The URI of the HDFS cluster's Key Management Server (KMS).

§
LocationArn: string
[src]

The Amazon Resource Name (ARN) of the source HDFS cluster location.

§
NameNodes?: HdfsNameNode[] | null
[src]

The NameNode that manages the HDFS namespace. The NameNode performs operations such as opening, closing, and renaming files and directories. The NameNode contains the information to map blocks of data to the DataNodes. You can use only one NameNode.

§
QopConfiguration?: QopConfiguration | null
[src]

The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC) and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS) cluster.

§
ReplicationFactor?: number | null
[src]

The number of DataNodes to replicate the data to when writing to the HDFS cluster.

§
SimpleUser?: string | null
[src]

The user name used to identify the client on the host operating system.

§
Subdirectory?: string | null
[src]

A subdirectory in the HDFS cluster. This subdirectory is used to read data from or write data to the HDFS cluster.