Struct aws_sdk_paymentcryptographydata::operation::verify_card_validation_data::VerifyCardValidationDataOutput
source · #[non_exhaustive]pub struct VerifyCardValidationDataOutput {
pub key_arn: String,
pub key_check_value: String,
/* 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.key_arn: String
The keyARN
of the CVK encryption key that Amazon Web Services Payment Cryptography uses to verify CVV or CSC.
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.
Implementations§
source§impl VerifyCardValidationDataOutput
impl VerifyCardValidationDataOutput
sourcepub fn key_arn(&self) -> &str
pub fn key_arn(&self) -> &str
The keyARN
of the CVK encryption key that Amazon Web Services Payment Cryptography uses to verify CVV or CSC.
sourcepub fn key_check_value(&self) -> &str
pub fn 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.
source§impl VerifyCardValidationDataOutput
impl VerifyCardValidationDataOutput
sourcepub fn builder() -> VerifyCardValidationDataOutputBuilder
pub fn builder() -> VerifyCardValidationDataOutputBuilder
Creates a new builder-style object to manufacture VerifyCardValidationDataOutput
.
Trait Implementations§
source§impl Clone for VerifyCardValidationDataOutput
impl Clone for VerifyCardValidationDataOutput
source§fn clone(&self) -> VerifyCardValidationDataOutput
fn clone(&self) -> VerifyCardValidationDataOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for VerifyCardValidationDataOutput
impl PartialEq for VerifyCardValidationDataOutput
source§fn eq(&self, other: &VerifyCardValidationDataOutput) -> bool
fn eq(&self, other: &VerifyCardValidationDataOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for VerifyCardValidationDataOutput
impl RequestId for VerifyCardValidationDataOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for VerifyCardValidationDataOutput
Auto Trait Implementations§
impl Freeze for VerifyCardValidationDataOutput
impl RefUnwindSafe for VerifyCardValidationDataOutput
impl Send for VerifyCardValidationDataOutput
impl Sync for VerifyCardValidationDataOutput
impl Unpin for VerifyCardValidationDataOutput
impl UnwindSafe for VerifyCardValidationDataOutput
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