Class: Aws::PaymentCryptographyData::Types::WrappedKeyMaterial
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::WrappedKeyMaterial
- 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
Defined Under Namespace
Classes: DiffieHellmanSymmetricKey, Tr31KeyBlock, Unknown
Constant Summary collapse
- SENSITIVE =
[:tr_31_key_block]
Instance Attribute Summary collapse
-
#diffie_hellman_symmetric_key ⇒ Types::EcdhDerivationAttributes
The parameter information for deriving a ECDH shared key.
-
#tr_31_key_block ⇒ String
The TR-31 wrapped key block.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#diffie_hellman_symmetric_key ⇒ Types::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_block ⇒ String
The TR-31 wrapped key block.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2853 2854 2855 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 2853 def unknown @unknown end |