Class: Aws::PaymentCryptographyData::Types::WrappedKeyMaterial
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::WrappedKeyMaterial
- 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
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.
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_block ⇒ String
The TR-31 wrapped key block.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3037 3038 3039 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3037 def unknown @unknown end |