Class: Aws::PaymentCryptographyData::Types::AmexCardSecurityCodeVersion2
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::PaymentCryptographyData::Types::AmexCardSecurityCodeVersion2
 
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Card data parameters that are required to generate a Card Security Code (CSC2) for an AMEX payment card.
Constant Summary collapse
- SENSITIVE =
- [:card_expiry_date, :service_code] 
Instance Attribute Summary collapse
- 
  
    
      #card_expiry_date  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The expiry date of a payment card. 
- 
  
    
      #service_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The service code of the AMEX payment card. 
Instance Attribute Details
#card_expiry_date ⇒ String
The expiry date of a payment card.
| 100 101 102 103 104 105 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 100 class AmexCardSecurityCodeVersion2 < Struct.new( :card_expiry_date, :service_code) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end | 
#service_code ⇒ String
The service code of the AMEX payment card. This is different from the Card Security Code (CSC).
| 100 101 102 103 104 105 | # File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 100 class AmexCardSecurityCodeVersion2 < Struct.new( :card_expiry_date, :service_code) SENSITIVE = [:card_expiry_date, :service_code] include Aws::Structure end |