interface QopConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationHDFSPropsMixin.QopConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationHDFSPropsMixin_QopConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationHDFSPropsMixin.QopConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationHDFSPropsMixin.QopConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationHDFSPropsMixin » 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 { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const qopConfigurationProperty: datasync_mixins.CfnLocationHDFSPropsMixin.QopConfigurationProperty = {
dataTransferProtection: 'dataTransferProtection',
rpcProtection: 'rpcProtection',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The data transfer protection setting configured on the HDFS cluster. |
| rpc | string | The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster. |
dataTransferProtection?
Type:
string
(optional, default: "PRIVACY")
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, default: "PRIVACY")
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.

.NET
Go
Java
Python
TypeScript