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.



1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1606

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



1606
1607
1608
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1606

def unknown
  @unknown
end