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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#data_transfer_protectionString

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)


4382
4383
4384
4385
4386
4387
# File 'lib/aws-sdk-datasync/types.rb', line 4382

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

#rpc_protectionString

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)


4382
4383
4384
4385
4386
4387
# File 'lib/aws-sdk-datasync/types.rb', line 4382

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