Class: Aws::PaymentCryptography::Types::ImportTr31KeyBlock
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::ImportTr31KeyBlock
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Overview
Parameter information for key material import using symmetric TR-31 key exchange method.
Constant Summary collapse
- SENSITIVE =
[:wrapped_key_block]
Instance Attribute Summary collapse
-
#wrapped_key_block ⇒ String
The TR-31 wrapped key block to import.
-
#wrapping_key_identifier ⇒ String
The
KeyARN
of the key that will decrypt or unwrap a TR-31 key block during import.
Instance Attribute Details
#wrapped_key_block ⇒ String
The TR-31 wrapped key block to import.
842 843 844 845 846 847 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 842 class ImportTr31KeyBlock < Struct.new( :wrapping_key_identifier, :wrapped_key_block) SENSITIVE = [:wrapped_key_block] include Aws::Structure end |
#wrapping_key_identifier ⇒ String
The KeyARN
of the key that will decrypt or unwrap a TR-31 key
block during import.
842 843 844 845 846 847 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 842 class ImportTr31KeyBlock < Struct.new( :wrapping_key_identifier, :wrapped_key_block) SENSITIVE = [:wrapped_key_block] include Aws::Structure end |