Class: Aws::PaymentCryptographyData::Types::SessionKeyAmex

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

Overview

Parameters to derive session key for an Amex payment card.

Constant Summary collapse

SENSITIVE =
[:primary_account_number]

Instance Attribute Summary collapse

Instance Attribute Details

#pan_sequence_numberString

A number that identifies and differentiates payment cards with the same Primary Account Number (PAN).

Returns:

  • (String)


1485
1486
1487
1488
1489
1490
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1485

class SessionKeyAmex < Struct.new(
  :pan_sequence_number,
  :primary_account_number)
  SENSITIVE = [:primary_account_number]
  include Aws::Structure
end

#primary_account_numberString

The Primary Account Number (PAN) of the cardholder. A PAN is a unique identifier for a payment credit or debit card and associates the card to a specific account holder.

Returns:

  • (String)


1485
1486
1487
1488
1489
1490
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1485

class SessionKeyAmex < Struct.new(
  :pan_sequence_number,
  :primary_account_number)
  SENSITIVE = [:primary_account_number]
  include Aws::Structure
end