Struct aws_sdk_paymentcryptographydata::operation::verify_auth_request_cryptogram::VerifyAuthRequestCryptogramInput
source · #[non_exhaustive]pub struct VerifyAuthRequestCryptogramInput {
pub key_identifier: Option<String>,
pub transaction_data: Option<String>,
pub auth_request_cryptogram: Option<String>,
pub major_key_derivation_mode: Option<MajorKeyDerivationMode>,
pub session_key_derivation_attributes: Option<SessionKeyDerivation>,
pub auth_response_attributes: Option<CryptogramAuthResponse>,
}
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_identifier: Option<String>
The keyARN
of the major encryption key that Amazon Web Services Payment Cryptography uses for ARQC verification.
transaction_data: Option<String>
The transaction data that Amazon Web Services Payment Cryptography uses for ARQC verification. The same transaction is used for ARQC generation outside of Amazon Web Services Payment Cryptography.
auth_request_cryptogram: Option<String>
The auth request cryptogram imported into Amazon Web Services Payment Cryptography for ARQC verification using a major encryption key and transaction data.
major_key_derivation_mode: Option<MajorKeyDerivationMode>
The method to use when deriving the major encryption key for ARQC verification within Amazon Web Services Payment Cryptography. The same key derivation mode was used for ARQC generation outside of Amazon Web Services Payment Cryptography.
session_key_derivation_attributes: Option<SessionKeyDerivation>
The attributes and values to use for deriving a session key for ARQC verification within Amazon Web Services Payment Cryptography. The same attributes were used for ARQC generation outside of Amazon Web Services Payment Cryptography.
auth_response_attributes: Option<CryptogramAuthResponse>
The attributes and values for auth request cryptogram verification. These parameters are required in case using ARPC Method 1 or Method 2 for ARQC verification.
Implementations§
source§impl VerifyAuthRequestCryptogramInput
impl VerifyAuthRequestCryptogramInput
sourcepub fn key_identifier(&self) -> Option<&str>
pub fn key_identifier(&self) -> Option<&str>
The keyARN
of the major encryption key that Amazon Web Services Payment Cryptography uses for ARQC verification.
sourcepub fn transaction_data(&self) -> Option<&str>
pub fn transaction_data(&self) -> Option<&str>
The transaction data that Amazon Web Services Payment Cryptography uses for ARQC verification. The same transaction is used for ARQC generation outside of Amazon Web Services Payment Cryptography.
sourcepub fn auth_request_cryptogram(&self) -> Option<&str>
pub fn auth_request_cryptogram(&self) -> Option<&str>
The auth request cryptogram imported into Amazon Web Services Payment Cryptography for ARQC verification using a major encryption key and transaction data.
sourcepub fn major_key_derivation_mode(&self) -> Option<&MajorKeyDerivationMode>
pub fn major_key_derivation_mode(&self) -> Option<&MajorKeyDerivationMode>
The method to use when deriving the major encryption key for ARQC verification within Amazon Web Services Payment Cryptography. The same key derivation mode was used for ARQC generation outside of Amazon Web Services Payment Cryptography.
sourcepub fn session_key_derivation_attributes(&self) -> Option<&SessionKeyDerivation>
pub fn session_key_derivation_attributes(&self) -> Option<&SessionKeyDerivation>
The attributes and values to use for deriving a session key for ARQC verification within Amazon Web Services Payment Cryptography. The same attributes were used for ARQC generation outside of Amazon Web Services Payment Cryptography.
sourcepub fn auth_response_attributes(&self) -> Option<&CryptogramAuthResponse>
pub fn auth_response_attributes(&self) -> Option<&CryptogramAuthResponse>
The attributes and values for auth request cryptogram verification. These parameters are required in case using ARPC Method 1 or Method 2 for ARQC verification.
source§impl VerifyAuthRequestCryptogramInput
impl VerifyAuthRequestCryptogramInput
sourcepub fn builder() -> VerifyAuthRequestCryptogramInputBuilder
pub fn builder() -> VerifyAuthRequestCryptogramInputBuilder
Creates a new builder-style object to manufacture VerifyAuthRequestCryptogramInput
.
Trait Implementations§
source§impl Clone for VerifyAuthRequestCryptogramInput
impl Clone for VerifyAuthRequestCryptogramInput
source§fn clone(&self) -> VerifyAuthRequestCryptogramInput
fn clone(&self) -> VerifyAuthRequestCryptogramInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for VerifyAuthRequestCryptogramInput
impl PartialEq for VerifyAuthRequestCryptogramInput
source§fn eq(&self, other: &VerifyAuthRequestCryptogramInput) -> bool
fn eq(&self, other: &VerifyAuthRequestCryptogramInput) -> bool
self
and other
values to be equal, and is used
by ==
.