Class: Aws::PaymentCryptographyData::Types::OutgoingKeyMaterial

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

Overview

Note:

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

Parameter information of the outgoing TR31WrappedKeyBlock containing the transaction key.

Direct Known Subclasses

Tr31KeyBlock, Unknown

Defined Under Namespace

Classes: Tr31KeyBlock, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tr_31_key_blockTypes::OutgoingTr31KeyBlock

Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using a KEK.



1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1797

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

  class Tr31KeyBlock < OutgoingKeyMaterial; end
  class Unknown < OutgoingKeyMaterial; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1797
1798
1799
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1797

def unknown
  @unknown
end