Class: Aws::PaymentCryptographyData::Types::OutgoingKeyMaterial
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::OutgoingKeyMaterial
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1931 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
1931 1932 1933 |
# File 'lib/aws-sdk-paymentcryptographydata/types.rb', line 1931 def unknown @unknown end |