Struct aws_sdk_paymentcryptographydata::operation::translate_pin_data::TranslatePinDataInput
source · #[non_exhaustive]pub struct TranslatePinDataInput {
pub incoming_key_identifier: Option<String>,
pub outgoing_key_identifier: Option<String>,
pub incoming_translation_attributes: Option<TranslationIsoFormats>,
pub outgoing_translation_attributes: Option<TranslationIsoFormats>,
pub encrypted_pin_block: Option<String>,
pub incoming_dukpt_attributes: Option<DukptDerivationAttributes>,
pub outgoing_dukpt_attributes: Option<DukptDerivationAttributes>,
pub incoming_wrapped_key: Option<WrappedKey>,
pub outgoing_wrapped_key: Option<WrappedKey>,
}
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.incoming_key_identifier: Option<String>
The keyARN
of the encryption key under which incoming PIN block data is encrypted. This key type can be PEK or BDK.
When a WrappedKeyBlock is provided, this value will be the identifier to the key wrapping key for PIN block. Otherwise, it is the key identifier used to perform the operation.
outgoing_key_identifier: Option<String>
The keyARN
of the encryption key for encrypting outgoing PIN block data. This key type can be PEK or BDK.
incoming_translation_attributes: Option<TranslationIsoFormats>
The format of the incoming PIN block data for translation within Amazon Web Services Payment Cryptography.
outgoing_translation_attributes: Option<TranslationIsoFormats>
The format of the outgoing PIN block data after translation by Amazon Web Services Payment Cryptography.
encrypted_pin_block: Option<String>
The encrypted PIN block data that Amazon Web Services Payment Cryptography translates.
incoming_dukpt_attributes: Option<DukptDerivationAttributes>
The attributes and values to use for incoming DUKPT encryption key for PIN block translation.
outgoing_dukpt_attributes: Option<DukptDerivationAttributes>
The attributes and values to use for outgoing DUKPT encryption key after PIN block translation.
incoming_wrapped_key: Option<WrappedKey>
The WrappedKeyBlock containing the encryption key under which incoming PIN block data is encrypted.
outgoing_wrapped_key: Option<WrappedKey>
The WrappedKeyBlock containing the encryption key for encrypting outgoing PIN block data.
Implementations§
source§impl TranslatePinDataInput
impl TranslatePinDataInput
sourcepub fn incoming_key_identifier(&self) -> Option<&str>
pub fn incoming_key_identifier(&self) -> Option<&str>
The keyARN
of the encryption key under which incoming PIN block data is encrypted. This key type can be PEK or BDK.
When a WrappedKeyBlock is provided, this value will be the identifier to the key wrapping key for PIN block. Otherwise, it is the key identifier used to perform the operation.
sourcepub fn outgoing_key_identifier(&self) -> Option<&str>
pub fn outgoing_key_identifier(&self) -> Option<&str>
The keyARN
of the encryption key for encrypting outgoing PIN block data. This key type can be PEK or BDK.
sourcepub fn incoming_translation_attributes(&self) -> Option<&TranslationIsoFormats>
pub fn incoming_translation_attributes(&self) -> Option<&TranslationIsoFormats>
The format of the incoming PIN block data for translation within Amazon Web Services Payment Cryptography.
sourcepub fn outgoing_translation_attributes(&self) -> Option<&TranslationIsoFormats>
pub fn outgoing_translation_attributes(&self) -> Option<&TranslationIsoFormats>
The format of the outgoing PIN block data after translation by Amazon Web Services Payment Cryptography.
sourcepub fn encrypted_pin_block(&self) -> Option<&str>
pub fn encrypted_pin_block(&self) -> Option<&str>
The encrypted PIN block data that Amazon Web Services Payment Cryptography translates.
sourcepub fn incoming_dukpt_attributes(&self) -> Option<&DukptDerivationAttributes>
pub fn incoming_dukpt_attributes(&self) -> Option<&DukptDerivationAttributes>
The attributes and values to use for incoming DUKPT encryption key for PIN block translation.
sourcepub fn outgoing_dukpt_attributes(&self) -> Option<&DukptDerivationAttributes>
pub fn outgoing_dukpt_attributes(&self) -> Option<&DukptDerivationAttributes>
The attributes and values to use for outgoing DUKPT encryption key after PIN block translation.
sourcepub fn incoming_wrapped_key(&self) -> Option<&WrappedKey>
pub fn incoming_wrapped_key(&self) -> Option<&WrappedKey>
The WrappedKeyBlock containing the encryption key under which incoming PIN block data is encrypted.
sourcepub fn outgoing_wrapped_key(&self) -> Option<&WrappedKey>
pub fn outgoing_wrapped_key(&self) -> Option<&WrappedKey>
The WrappedKeyBlock containing the encryption key for encrypting outgoing PIN block data.
source§impl TranslatePinDataInput
impl TranslatePinDataInput
sourcepub fn builder() -> TranslatePinDataInputBuilder
pub fn builder() -> TranslatePinDataInputBuilder
Creates a new builder-style object to manufacture TranslatePinDataInput
.
Trait Implementations§
source§impl Clone for TranslatePinDataInput
impl Clone for TranslatePinDataInput
source§fn clone(&self) -> TranslatePinDataInput
fn clone(&self) -> TranslatePinDataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TranslatePinDataInput
impl Debug for TranslatePinDataInput
source§impl PartialEq for TranslatePinDataInput
impl PartialEq for TranslatePinDataInput
source§fn eq(&self, other: &TranslatePinDataInput) -> bool
fn eq(&self, other: &TranslatePinDataInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TranslatePinDataInput
Auto Trait Implementations§
impl Freeze for TranslatePinDataInput
impl RefUnwindSafe for TranslatePinDataInput
impl Send for TranslatePinDataInput
impl Sync for TranslatePinDataInput
impl Unpin for TranslatePinDataInput
impl UnwindSafe for TranslatePinDataInput
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