Class: Aws::KMS::Types::ReEncryptResponse

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 reencrypted data. When you use the HTTP API or the AWS CLI, the value is Base64-encdoded. Otherwise, it is not encoded.

Returns:

  • (String)


2502
2503
2504
2505
2506
2507
# File 'lib/aws-sdk-kms/types.rb', line 2502

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

#key_idString

Unique identifier of the CMK used to reencrypt the data.

Returns:

  • (String)


2502
2503
2504
2505
2506
2507
# File 'lib/aws-sdk-kms/types.rb', line 2502

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

#source_key_idString

Unique identifier of the CMK used to originally encrypt the data.

Returns:

  • (String)


2502
2503
2504
2505
2506
2507
# File 'lib/aws-sdk-kms/types.rb', line 2502

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