Class: Aws::KMS::Types::DecryptResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-kms/types.rb

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation.

Returns:

  • (String)


455
456
457
458
459
# File 'lib/aws-sdk-kms/types.rb', line 455

class DecryptResponse < Struct.new(
  :key_id,
  :plaintext)
  include Aws::Structure
end

#plaintextString

Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn’t have permission to use it.

Returns:

  • (String)


455
456
457
458
459
# File 'lib/aws-sdk-kms/types.rb', line 455

class DecryptResponse < Struct.new(
  :key_id,
  :plaintext)
  include Aws::Structure
end