Class: Aws::KMS::Types::DecryptResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::DecryptResponse
- Defined in:
- gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:plaintext]
Instance Attribute Summary collapse
-
#encryption_algorithm ⇒ String
The encryption algorithm that was used to decrypt the ciphertext.
-
#key_id ⇒ String
The Amazon Resource Name ([key ARN][1]) of the KMS key that was used to decrypt the ciphertext.
-
#plaintext ⇒ String
Decrypted plaintext data.
Instance Attribute Details
#encryption_algorithm ⇒ String
The encryption algorithm that was used to decrypt the ciphertext.
1584 1585 1586 1587 1588 1589 1590 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 1584 class DecryptResponse < Struct.new( :key_id, :plaintext, :encryption_algorithm) SENSITIVE = [:plaintext] include Aws::Structure end |
#key_id ⇒ String
The Amazon Resource Name (key ARN) of the KMS key that was used to decrypt the ciphertext.
1584 1585 1586 1587 1588 1589 1590 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 1584 class DecryptResponse < Struct.new( :key_id, :plaintext, :encryption_algorithm) SENSITIVE = [:plaintext] include Aws::Structure end |
#plaintext ⇒ String
Decrypted plaintext data. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
1584 1585 1586 1587 1588 1589 1590 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 1584 class DecryptResponse < Struct.new( :key_id, :plaintext, :encryption_algorithm) SENSITIVE = [:plaintext] include Aws::Structure end |