Class: Aws::KMS::Types::GenerateDataKeyPairWithoutPlaintextResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::GenerateDataKeyPairWithoutPlaintextResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the KMS key that encrypted the private key.
-
#key_pair_spec ⇒ String
The type of data key pair that was generated.
-
#private_key_ciphertext_blob ⇒ String
The encrypted copy of the private key.
-
#public_key ⇒ String
The public key (in plaintext).
Instance Attribute Details
#key_id ⇒ String
The Amazon Resource Name ([key ARN]) of the KMS key that encrypted the private key.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
2752 2753 2754 2755 2756 2757 2758 2759 |
# File 'lib/aws-sdk-kms/types.rb', line 2752 class GenerateDataKeyPairWithoutPlaintextResponse < Struct.new( :private_key_ciphertext_blob, :public_key, :key_id, :key_pair_spec) SENSITIVE = [] include Aws::Structure end |
#key_pair_spec ⇒ String
The type of data key pair that was generated.
2752 2753 2754 2755 2756 2757 2758 2759 |
# File 'lib/aws-sdk-kms/types.rb', line 2752 class GenerateDataKeyPairWithoutPlaintextResponse < Struct.new( :private_key_ciphertext_blob, :public_key, :key_id, :key_pair_spec) SENSITIVE = [] include Aws::Structure end |
#private_key_ciphertext_blob ⇒ String
The encrypted copy of the private key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
2752 2753 2754 2755 2756 2757 2758 2759 |
# File 'lib/aws-sdk-kms/types.rb', line 2752 class GenerateDataKeyPairWithoutPlaintextResponse < Struct.new( :private_key_ciphertext_blob, :public_key, :key_id, :key_pair_spec) SENSITIVE = [] include Aws::Structure end |
#public_key ⇒ String
The public key (in plaintext). When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
2752 2753 2754 2755 2756 2757 2758 2759 |
# File 'lib/aws-sdk-kms/types.rb', line 2752 class GenerateDataKeyPairWithoutPlaintextResponse < Struct.new( :private_key_ciphertext_blob, :public_key, :key_id, :key_pair_spec) SENSITIVE = [] include Aws::Structure end |