Class: Aws::KMS::Types::GenerateDataKeyWithoutPlaintextResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::GenerateDataKeyWithoutPlaintextResponse
- Defined in:
- gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ciphertext_blob ⇒ String
The encrypted data key.
-
#key_id ⇒ String
The Amazon Resource Name ([key ARN][1]) of the KMS key that encrypted the data key.
Instance Attribute Details
#ciphertext_blob ⇒ String
The encrypted data key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
3073 3074 3075 3076 3077 3078 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 3073 class GenerateDataKeyWithoutPlaintextResponse < Struct.new( :ciphertext_blob, :key_id) SENSITIVE = [] include Aws::Structure end |
#key_id ⇒ String
The Amazon Resource Name (key ARN) of the KMS key that encrypted the data key.
3073 3074 3075 3076 3077 3078 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 3073 class GenerateDataKeyWithoutPlaintextResponse < Struct.new( :ciphertext_blob, :key_id) SENSITIVE = [] include Aws::Structure end |