Class: Aws::DataSync::Types::QopConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::QopConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datasync/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_transfer_protection ⇒ String
The data transfer protection setting configured on the HDFS cluster.
-
#rpc_protection ⇒ String
The RPC protection setting configured on the HDFS cluster.
Instance Attribute Details
#data_transfer_protection ⇒ String
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.
4808 4809 4810 4811 4812 4813 |
# File 'lib/aws-sdk-datasync/types.rb', line 4808 class QopConfiguration < Struct.new( :rpc_protection, :data_transfer_protection) SENSITIVE = [] include Aws::Structure end |
#rpc_protection ⇒ String
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.
4808 4809 4810 4811 4812 4813 |
# File 'lib/aws-sdk-datasync/types.rb', line 4808 class QopConfiguration < Struct.new( :rpc_protection, :data_transfer_protection) SENSITIVE = [] include Aws::Structure end |