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.
3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3201 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.
3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3201 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
3201 3202 3203 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 3201 def unknown @unknown end |