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)


689
690
691
692
693
# File 'lib/aws-sdk-kms/types.rb', line 689

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

#plaintextString

Decrypted plaintext data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.

Returns:

  • (String)


689
690
691
692
693
# File 'lib/aws-sdk-kms/types.rb', line 689

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