Class: Aws::PaymentCryptographyData::Types::ReEncryptDataOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:cipher_text]

Instance Attribute Summary collapse

Instance Attribute Details

#cipher_textString

The encrypted ciphertext.

Returns:

  • (String)


1421
1422
1423
1424
1425
1426
1427
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1421

class ReEncryptDataOutput < Struct.new(
  :cipher_text,
  :key_arn,
  :key_check_value)
  SENSITIVE = [:cipher_text]
  include Aws::Structure
end

#key_arnString

The keyARN (Amazon Resource Name) of the encryption key that Amazon Web Services Payment Cryptography uses for plaintext encryption.

Returns:

  • (String)


1421
1422
1423
1424
1425
1426
1427
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1421

class ReEncryptDataOutput < Struct.new(
  :cipher_text,
  :key_arn,
  :key_check_value)
  SENSITIVE = [:cipher_text]
  include Aws::Structure
end

#key_check_valueString

The key check value (KCV) of the encryption key. The KCV is used to check if all parties holding a given key have the same key or to detect that a key has changed.

Amazon Web Services Payment Cryptography computes the KCV according to the CMAC specification.

Returns:

  • (String)


1421
1422
1423
1424
1425
1426
1427
# File 'gems/aws-sdk-paymentcryptographydata/lib/aws-sdk-paymentcryptographydata/types.rb', line 1421

class ReEncryptDataOutput < Struct.new(
  :cipher_text,
  :key_arn,
  :key_check_value)
  SENSITIVE = [:cipher_text]
  include Aws::Structure
end