Class: Aws::PaymentCryptographyData::Types::ReEncryptionAttributes
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptographyData::Types::ReEncryptionAttributes
- Defined in:
- gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb
Overview
ReEncryptionAttributes is a union - when making an API calls you must set exactly one of the members.
Parameters that are required to perform reencryption operation.
Defined Under Namespace
Classes: Asymmetric, Dukpt, Symmetric, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asymmetric ⇒ Types::AsymmetricEncryptionAttributes
Specifies the parameters required to encrypt data using an asymmetric key pair.
-
#dukpt ⇒ Types::DukptEncryptionAttributes
Specifies the parameters required to encrypt data using DUKPT.
-
#symmetric ⇒ Types::SymmetricEncryptionAttributes
Specifies the parameters required to encrypt data using symmetric keys.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#asymmetric ⇒ Types::AsymmetricEncryptionAttributes
Specifies the parameters required to encrypt data using an
asymmetric key pair. You must specify a PaddingType.
2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2240 class ReEncryptionAttributes < Struct.new( :symmetric, :asymmetric, :dukpt, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Symmetric < ReEncryptionAttributes; end class Asymmetric < ReEncryptionAttributes; end class Dukpt < ReEncryptionAttributes; end class Unknown < ReEncryptionAttributes; end end |
#dukpt ⇒ Types::DukptEncryptionAttributes
Specifies the parameters required to encrypt data using DUKPT.
2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2240 class ReEncryptionAttributes < Struct.new( :symmetric, :asymmetric, :dukpt, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Symmetric < ReEncryptionAttributes; end class Asymmetric < ReEncryptionAttributes; end class Dukpt < ReEncryptionAttributes; end class Unknown < ReEncryptionAttributes; end end |
#symmetric ⇒ Types::SymmetricEncryptionAttributes
Specifies the parameters required to encrypt data using symmetric keys.
2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2240 class ReEncryptionAttributes < Struct.new( :symmetric, :asymmetric, :dukpt, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Symmetric < ReEncryptionAttributes; end class Asymmetric < ReEncryptionAttributes; end class Dukpt < ReEncryptionAttributes; end class Unknown < ReEncryptionAttributes; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2240 2241 2242 |
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 2240 def unknown @unknown end |