Struct aws_sdk_datasync::types::QopConfiguration
source · #[non_exhaustive]pub struct QopConfiguration {
pub rpc_protection: Option<HdfsRpcProtection>,
pub data_transfer_protection: Option<HdfsDataTransferProtection>,
}
Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.rpc_protection: Option<HdfsRpcProtection>
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.
data_transfer_protection: Option<HdfsDataTransferProtection>
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.
Implementations§
source§impl QopConfiguration
impl QopConfiguration
sourcepub fn rpc_protection(&self) -> Option<&HdfsRpcProtection>
pub fn rpc_protection(&self) -> Option<&HdfsRpcProtection>
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.
sourcepub fn data_transfer_protection(&self) -> Option<&HdfsDataTransferProtection>
pub fn data_transfer_protection(&self) -> Option<&HdfsDataTransferProtection>
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.
source§impl QopConfiguration
impl QopConfiguration
sourcepub fn builder() -> QopConfigurationBuilder
pub fn builder() -> QopConfigurationBuilder
Creates a new builder-style object to manufacture QopConfiguration
.
Trait Implementations§
source§impl Clone for QopConfiguration
impl Clone for QopConfiguration
source§fn clone(&self) -> QopConfiguration
fn clone(&self) -> QopConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QopConfiguration
impl Debug for QopConfiguration
source§impl PartialEq<QopConfiguration> for QopConfiguration
impl PartialEq<QopConfiguration> for QopConfiguration
source§fn eq(&self, other: &QopConfiguration) -> bool
fn eq(&self, other: &QopConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.