Struct aws_sdk_datasync::model::QopConfiguration
source · #[non_exhaustive]pub struct QopConfiguration { /* private fields */ }
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.
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() -> Builder
pub fn builder() -> Builder
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
This method tests for
self
and other
values to be equal, and is used
by ==
.