Class: Aws::PaymentCryptographyData::Types::IncomingKeyMaterial

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

Overview

Note:

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

Parameter information of the incoming WrappedKeyBlock containing the transaction key.

Direct Known Subclasses

DiffieHellmanTr31KeyBlock, Unknown

Defined Under Namespace

Classes: DiffieHellmanTr31KeyBlock, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#diffie_hellman_tr_31_key_blockTypes::IncomingDiffieHellmanTr31KeyBlock

Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using an ECDH dervied key.



1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1709

class IncomingKeyMaterial < Struct.new(
  :diffie_hellman_tr_31_key_block,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class DiffieHellmanTr31KeyBlock < IncomingKeyMaterial; end
  class Unknown < IncomingKeyMaterial; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1709
1710
1711
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1709

def unknown
  @unknown
end