Class: Aws::KMS::Types::GenerateDataKeyWithoutPlaintextResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::GenerateDataKeyWithoutPlaintextResponse
- Includes:
- Structure
- Defined in:
- 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]) 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 '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.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
3073 3074 3075 3076 3077 3078 |
# File 'lib/aws-sdk-kms/types.rb', line 3073 class GenerateDataKeyWithoutPlaintextResponse < Struct.new( :ciphertext_blob, :key_id) SENSITIVE = [] include Aws::Structure end |