Struct aws_sdk_datasync::types::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() -> 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
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 ==.impl StructuralPartialEq for QopConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for QopConfiguration
impl Send for QopConfiguration
impl Sync for QopConfiguration
impl Unpin for QopConfiguration
impl UnwindSafe for QopConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more