Class: Aws::S3::EncryptionV3::Materials
- Inherits:
-
Object
- Object
- Aws::S3::EncryptionV3::Materials
- Defined in:
- lib/aws-sdk-s3/encryptionV3/materials.rb
Instance Attribute Summary collapse
- #description ⇒ String<JSON> readonly
- #key ⇒ OpenSSL::PKey::RSA, String readonly
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Materials
constructor
A new instance of Materials.
Constructor Details
#initialize(options = {}) ⇒ Materials
Returns a new instance of Materials.
16 17 18 19 |
# File 'lib/aws-sdk-s3/encryptionV3/materials.rb', line 16 def initialize( = {}) @key = validate_key([:key]) @description = validate_desc([:description]) end |
Instance Attribute Details
#description ⇒ String<JSON> (readonly)
25 26 27 |
# File 'lib/aws-sdk-s3/encryptionV3/materials.rb', line 25 def description @description end |
#key ⇒ OpenSSL::PKey::RSA, String (readonly)
22 23 24 |
# File 'lib/aws-sdk-s3/encryptionV3/materials.rb', line 22 def key @key end |