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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptographydata/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.



3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3037

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)


3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3037

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



3037
3038
3039
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3037

def unknown
  @unknown
end