Class: Aws::PaymentCryptographyData::Types::WrappedKeyMaterial

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-paymentcryptographydata/types.rb

Overview

Note:

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

Parameter information of a WrappedKeyBlock for encryption key exchange.

Direct Known Subclasses

DiffieHellmanSymmetricKey, Tr31KeyBlock, Unknown

Defined Under Namespace

Classes: DiffieHellmanSymmetricKey, Tr31KeyBlock, Unknown

Constant Summary collapse

SENSITIVE =
[:tr_31_key_block]

Instance Attribute Summary collapse

Instance Attribute Details

#diffie_hellman_symmetric_keyTypes::EcdhDerivationAttributes

The parameter information for deriving a ECDH shared key.



2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2853

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

  class Tr31KeyBlock < WrappedKeyMaterial; end
  class DiffieHellmanSymmetricKey < WrappedKeyMaterial; end
  class Unknown < WrappedKeyMaterial; end
end

#tr_31_key_blockString

The TR-31 wrapped key block.

Returns:

  • (String)


2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2853

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

  class Tr31KeyBlock < WrappedKeyMaterial; end
  class DiffieHellmanSymmetricKey < WrappedKeyMaterial; end
  class Unknown < WrappedKeyMaterial; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2853
2854
2855
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2853

def unknown
  @unknown
end