Class: Aws::DataSync::Types::QopConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datasync/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

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.

Returns:

  • (String)


4762
4763
4764
4765
4766
4767
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 4762

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.

Returns:

  • (String)


4762
4763
4764
4765
4766
4767
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 4762

class QopConfiguration < Struct.new(
  :rpc_protection,
  :data_transfer_protection)
  SENSITIVE = []
  include Aws::Structure
end