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

CreateLocationHdfsRequest

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

§Properties

§
AgentArns: string[]
[src]

The Amazon Resource Names (ARNs) of the agents that are used to connect to the HDFS cluster.

§
AuthenticationType: HdfsAuthenticationType
[src]

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

§
BlockSize?: number | null
[src]

The size of data blocks to write into the HDFS cluster. The block size must be a multiple of 512 bytes. The default block size is 128 mebibytes (MiB).

§
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're using the CLI, it performs base64 encoding for you. Otherwise, provide the base64-encoded text.

Note: If KERBEROS is specified for AuthenticationType, this parameter is required.

§
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.

Note: If KERBEROS is specified for AuthenticationType, this parameter is required.

§
KerberosPrincipal?: string | null
[src]

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

Note: If KERBEROS is specified for AuthenticationType, this parameter is required.

§
KmsKeyProviderUri?: string | null
[src]

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

§
NameNodes: HdfsNameNode[]
[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 protection settings configured on the Hadoop Distributed File System (HDFS) cluster. If QopConfiguration isn't specified, RpcProtection and DataTransferProtection default to PRIVACY. If you set RpcProtection or DataTransferProtection, the other parameter assumes the same value.

§
ReplicationFactor?: number | null
[src]

The number of DataNodes to replicate the data to when writing to the HDFS cluster. By default, data is replicated to three DataNodes.

§
SimpleUser?: string | null
[src]

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

Note: If SIMPLE is specified for AuthenticationType, this parameter is required.

§
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. If the subdirectory isn't specified, it will default to /.

§
Tags?: TagListEntry[] | null
[src]

The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.