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 for QopConfiguration
impl PartialEq for QopConfiguration
impl StructuralPartialEq for QopConfiguration
Auto Trait Implementations§
impl Freeze for QopConfiguration
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more