aws-cdk-lib.aws_datasync.CfnLocationHDFS.QopConfigurationProperty

interface QopConfigurationProperty

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

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.

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 qopConfigurationProperty: datasync.CfnLocationHDFS.QopConfigurationProperty = {
  dataTransferProtection: 'dataTransferProtection',
  rpcProtection: 'rpcProtection',
};

Properties

NameTypeDescription
dataTransferProtection?stringThe data transfer protection setting configured on the HDFS cluster.
rpcProtection?stringThe Remote Procedure Call (RPC) protection setting configured on the HDFS cluster.

dataTransferProtection?

Type: string (optional)

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?

Type: string (optional)

The Remote Procedure Call (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.