Class: Aws::KMS::Types::GenerateRandomResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::KMS::Types::GenerateRandomResponse
- Defined in:
- gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:plaintext]
Instance Attribute Summary collapse
-
#plaintext ⇒ String
The random byte string.
Instance Attribute Details
#plaintext ⇒ String
The random byte string. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
2561 2562 2563 2564 2565 |
# File 'gems/aws-sdk-kms/lib/aws-sdk-kms/types.rb', line 2561 class GenerateRandomResponse < Struct.new( :plaintext) SENSITIVE = [:plaintext] include Aws::Structure end |