Class: Aws::PaymentCryptographyData::Types::CurrentPinAttributes

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-paymentcryptographydata/types.rb

Overview

The parameter values of the current PIN to be changed on the EMV chip card.

Constant Summary collapse

SENSITIVE =
[:current_encrypted_pin_block]

Instance Attribute Summary collapse

Instance Attribute Details

#current_encrypted_pin_blockString

The encrypted pinblock of the current pin stored on the chip card.

Returns:

  • (String)


406
407
408
409
410
411
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 406

class CurrentPinAttributes < Struct.new(
  :current_pin_pek_identifier,
  :current_encrypted_pin_block)
  SENSITIVE = [:current_encrypted_pin_block]
  include Aws::Structure
end

#current_pin_pek_identifierString

The ‘keyArn` of the current PIN PEK.

Returns:

  • (String)


406
407
408
409
410
411
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 406

class CurrentPinAttributes < Struct.new(
  :current_pin_pek_identifier,
  :current_encrypted_pin_block)
  SENSITIVE = [:current_encrypted_pin_block]
  include Aws::Structure
end