Class: Aws::PaymentCryptographyData::Types::ReEncryptionAttributes

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

Overview

Note:

ReEncryptionAttributes is a union - when making an API calls you must set exactly one of the members.

Parameters that are required to perform reencryption operation.

Direct Known Subclasses

Dukpt, Symmetric, Unknown

Defined Under Namespace

Classes: Dukpt, Symmetric, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dukptTypes::DukptEncryptionAttributes

Parameters that are required to encrypt plaintext data using DUKPT.



1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1443

class ReEncryptionAttributes < Struct.new(
  :dukpt,
  :symmetric,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Dukpt < ReEncryptionAttributes; end
  class Symmetric < ReEncryptionAttributes; end
  class Unknown < ReEncryptionAttributes; end
end

#symmetricTypes::SymmetricEncryptionAttributes

Parameters that are required to encrypt data using symmetric keys.



1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1443

class ReEncryptionAttributes < Struct.new(
  :dukpt,
  :symmetric,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Dukpt < ReEncryptionAttributes; end
  class Symmetric < ReEncryptionAttributes; end
  class Unknown < ReEncryptionAttributes; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1443
1444
1445
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1443

def unknown
  @unknown
end