Class: Aws::PaymentCryptographyData::Types::OutgoingKeyMaterial
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::OutgoingKeyMaterial
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
Note:
OutgoingKeyMaterial is a union - when making an API calls you must set exactly one of the members.
Parameter information of the outgoing TR31WrappedKeyBlock containing the transaction key.
Direct Known Subclasses
Defined Under Namespace
Classes: Tr31KeyBlock, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tr_31_key_block ⇒ Types::OutgoingTr31KeyBlock
Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using a KEK.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#tr_31_key_block ⇒ Types::OutgoingTr31KeyBlock
Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using a KEK.
1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1797 class OutgoingKeyMaterial < Struct.new( :tr_31_key_block, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Tr31KeyBlock < OutgoingKeyMaterial; end class Unknown < OutgoingKeyMaterial; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1797 1798 1799 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1797 def unknown @unknown end |