Class 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.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnLocationHDFSPropsMixin.QopConfigurationProperty : CfnLocationHDFSPropsMixin.IQopConfigurationProperty
Syntax (vb)
Public Class CfnLocationHDFSPropsMixin.QopConfigurationProperty Implements CfnLocationHDFSPropsMixin.IQopConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DataSync;
var qopConfigurationProperty = new QopConfigurationProperty {
DataTransferProtection = "dataTransferProtection",
RpcProtection = "rpcProtection"
};
Synopsis
Constructors
| 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. |
Properties
| DataTransferProtection | The data transfer protection setting configured on the HDFS cluster. |
| RpcProtection | The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster. |
Constructors
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.
public QopConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DataSync;
var qopConfigurationProperty = new QopConfigurationProperty {
DataTransferProtection = "dataTransferProtection",
RpcProtection = "rpcProtection"
};
Properties
DataTransferProtection
The data transfer protection setting configured on the HDFS cluster.
public string? DataTransferProtection { get; set; }
Property Value
Remarks
This setting corresponds to your dfs.data.transfer.protection setting in the hdfs-site.xml file on your Hadoop cluster.
Default: - "PRIVACY"
RpcProtection
The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster.
public string? RpcProtection { get; set; }
Property Value
Remarks
This setting corresponds to your hadoop.rpc.protection setting in your core-site.xml file on your Hadoop cluster.
Default: - "PRIVACY"