Class: Aws::KMS::Types::EncryptResponse

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

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#ciphertext_blobString

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

Returns:

  • (String)


795
796
797
798
799
# File 'lib/aws-sdk-kms/types.rb', line 795

class EncryptResponse < Struct.new(
  :ciphertext_blob,
  :key_id)
  include Aws::Structure
end

#key_idString

The ID of the key used during encryption.

Returns:

  • (String)


795
796
797
798
799
# File 'lib/aws-sdk-kms/types.rb', line 795

class EncryptResponse < Struct.new(
  :ciphertext_blob,
  :key_id)
  include Aws::Structure
end