#[non_exhaustive]pub struct GeneratePinDataOutput {
pub generation_key_arn: String,
pub generation_key_check_value: String,
pub encryption_key_arn: String,
pub encryption_key_check_value: String,
pub encrypted_pin_block: String,
pub pin_data: Option<PinData>,
/* private fields */
}
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.generation_key_arn: String
The keyARN
of the pin data generation key that Amazon Web Services Payment Cryptography uses for PIN, PVV or PIN Offset generation.
generation_key_check_value: String
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
encryption_key_arn: String
The keyARN
of the PEK that Amazon Web Services Payment Cryptography uses for encrypted pin block generation.
encryption_key_check_value: String
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
encrypted_pin_block: String
The PIN block encrypted under PEK from Amazon Web Services Payment Cryptography. The encrypted PIN block is a composite of PAN (Primary Account Number) and PIN (Personal Identification Number), generated in accordance with ISO 9564 standard.
pin_data: Option<PinData>
The attributes and values Amazon Web Services Payment Cryptography uses for pin data generation.
Implementations§
source§impl GeneratePinDataOutput
impl GeneratePinDataOutput
sourcepub fn generation_key_arn(&self) -> &str
pub fn generation_key_arn(&self) -> &str
The keyARN
of the pin data generation key that Amazon Web Services Payment Cryptography uses for PIN, PVV or PIN Offset generation.
sourcepub fn generation_key_check_value(&self) -> &str
pub fn generation_key_check_value(&self) -> &str
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
sourcepub fn encryption_key_arn(&self) -> &str
pub fn encryption_key_arn(&self) -> &str
The keyARN
of the PEK that Amazon Web Services Payment Cryptography uses for encrypted pin block generation.
sourcepub fn encryption_key_check_value(&self) -> &str
pub fn encryption_key_check_value(&self) -> &str
The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.
Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.
sourcepub fn encrypted_pin_block(&self) -> &str
pub fn encrypted_pin_block(&self) -> &str
The PIN block encrypted under PEK from Amazon Web Services Payment Cryptography. The encrypted PIN block is a composite of PAN (Primary Account Number) and PIN (Personal Identification Number), generated in accordance with ISO 9564 standard.
source§impl GeneratePinDataOutput
impl GeneratePinDataOutput
sourcepub fn builder() -> GeneratePinDataOutputBuilder
pub fn builder() -> GeneratePinDataOutputBuilder
Creates a new builder-style object to manufacture GeneratePinDataOutput
.
Trait Implementations§
source§impl Clone for GeneratePinDataOutput
impl Clone for GeneratePinDataOutput
source§fn clone(&self) -> GeneratePinDataOutput
fn clone(&self) -> GeneratePinDataOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GeneratePinDataOutput
impl Debug for GeneratePinDataOutput
source§impl PartialEq for GeneratePinDataOutput
impl PartialEq for GeneratePinDataOutput
source§impl RequestId for GeneratePinDataOutput
impl RequestId for GeneratePinDataOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GeneratePinDataOutput
Auto Trait Implementations§
impl Freeze for GeneratePinDataOutput
impl RefUnwindSafe for GeneratePinDataOutput
impl Send for GeneratePinDataOutput
impl Sync for GeneratePinDataOutput
impl Unpin for GeneratePinDataOutput
impl UnwindSafe for GeneratePinDataOutput
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