Class: Aws::PaymentCryptographyData::Types::GenerateCardValidationDataOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::GenerateCardValidationDataOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:validation_data]
Instance Attribute Summary collapse
-
#key_arn ⇒ String
The ‘keyARN` of the CVK encryption key that Amazon Web Services Payment Cryptography uses to generate CVV or CSC.
-
#key_check_value ⇒ String
The key check value (KCV) of the encryption key.
-
#validation_data ⇒ String
The CVV or CSC value that Amazon Web Services Payment Cryptography generates for the card.
Instance Attribute Details
#key_arn ⇒ String
The ‘keyARN` of the CVK encryption key that Amazon Web Services Payment Cryptography uses to generate CVV or CSC.
1069 1070 1071 1072 1073 1074 1075 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1069 class GenerateCardValidationDataOutput < Struct.new( :key_arn, :key_check_value, :validation_data) SENSITIVE = [:validation_data] include Aws::Structure end |
#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.
1069 1070 1071 1072 1073 1074 1075 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1069 class GenerateCardValidationDataOutput < Struct.new( :key_arn, :key_check_value, :validation_data) SENSITIVE = [:validation_data] include Aws::Structure end |
#validation_data ⇒ String
The CVV or CSC value that Amazon Web Services Payment Cryptography generates for the card.
1069 1070 1071 1072 1073 1074 1075 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1069 class GenerateCardValidationDataOutput < Struct.new( :key_arn, :key_check_value, :validation_data) SENSITIVE = [:validation_data] include Aws::Structure end |