Interface CfnLocationHDFSPropsMixin.QopConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationHDFSPropsMixin.QopConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLocationHDFSPropsMixin
@Stability(Stable)
public static interface CfnLocationHDFSPropsMixin.QopConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.datasync.*;
QopConfigurationProperty qopConfigurationProperty = QopConfigurationProperty.builder()
.dataTransferProtection("dataTransferProtection")
.rpcProtection("rpcProtection")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationHDFSPropsMixin.QopConfigurationPropertystatic final classAn implementation forCfnLocationHDFSPropsMixin.QopConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataTransferProtection
The data transfer protection setting configured on the HDFS cluster.This setting corresponds to your
dfs.data.transfer.protectionsetting in thehdfs-site.xmlfile on your Hadoop cluster.Default: - "PRIVACY"
- See Also:
-
getRpcProtection
The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster.This setting corresponds to your
hadoop.rpc.protectionsetting in yourcore-site.xmlfile on your Hadoop cluster.Default: - "PRIVACY"
- See Also:
-
builder
-