Class: Aws::PaymentCryptographyData::Types::IncomingKeyMaterial
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::IncomingKeyMaterial
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Note:
IncomingKeyMaterial is a union - when making an API calls you must set exactly one of the members.
Parameter information of the incoming WrappedKeyBlock containing the transaction key.
Direct Known Subclasses
Defined Under Namespace
Classes: DiffieHellmanTr31KeyBlock, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#diffie_hellman_tr_31_key_block ⇒ Types::IncomingDiffieHellmanTr31KeyBlock
Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using an ECDH dervied key.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#diffie_hellman_tr_31_key_block ⇒ Types::IncomingDiffieHellmanTr31KeyBlock
Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using an ECDH dervied key.
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1606 class IncomingKeyMaterial < Struct.new( :diffie_hellman_tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DiffieHellmanTr31KeyBlock < IncomingKeyMaterial; end class Unknown < IncomingKeyMaterial; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1606 1607 1608 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1606 def unknown @unknown end |