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

QopConfiguration

import type { QopConfiguration } from "https://aws-api.deno.dev/v0.3/services/datasync.ts?docs=full";

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.

interface QopConfiguration {
DataTransferProtection?: HdfsDataTransferProtection | null;
RpcProtection?: HdfsRpcProtection | null;
}

§Properties

§
DataTransferProtection?: HdfsDataTransferProtection | null
[src]

The data transfer protection setting configured on the HDFS cluster. This setting corresponds to your dfs.data.transfer.protection setting in the hdfs-site.xml file on your Hadoop cluster.

§
RpcProtection?: HdfsRpcProtection | null
[src]

The RPC protection setting configured on the HDFS cluster. This setting corresponds to your hadoop.rpc.protection setting in your core-site.xml file on your Hadoop cluster.