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.

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.



1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1772

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



1772
1773
1774
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1772

def unknown
  @unknown
end