Class: Aws::KMS::Types::EncryptResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::EncryptResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ciphertext_blob ⇒ String
The encrypted plaintext.
-
#encryption_algorithm ⇒ String
The encryption algorithm that was used to encrypt the plaintext.
-
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the KMS key that was used to encrypt the plaintext.
Instance Attribute Details
#ciphertext_blob ⇒ String
The encrypted plaintext. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
2404 2405 2406 2407 2408 2409 2410 |
# File 'lib/aws-sdk-kms/types.rb', line 2404 class EncryptResponse < Struct.new( :ciphertext_blob, :key_id, :encryption_algorithm) SENSITIVE = [] include Aws::Structure end |
#encryption_algorithm ⇒ String
The encryption algorithm that was used to encrypt the plaintext.
2404 2405 2406 2407 2408 2409 2410 |
# File 'lib/aws-sdk-kms/types.rb', line 2404 class EncryptResponse < Struct.new( :ciphertext_blob, :key_id, :encryption_algorithm) SENSITIVE = [] include Aws::Structure end |
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the KMS key that was used to encrypt the plaintext.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
2404 2405 2406 2407 2408 2409 2410 |
# File 'lib/aws-sdk-kms/types.rb', line 2404 class EncryptResponse < Struct.new( :ciphertext_blob, :key_id, :encryption_algorithm) SENSITIVE = [] include Aws::Structure end |