Class: Aws::S3::Types::SSEKMS
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::SSEKMS
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
Constant Summary collapse
- SENSITIVE =
[:key_id]
Instance Attribute Summary collapse
-
#key_id ⇒ String
Specifies the ID of the Key Management Service (KMS) symmetric encryption customer managed key to use for encrypting inventory reports.
Instance Attribute Details
#key_id ⇒ String
Specifies the ID of the Key Management Service (KMS) symmetric encryption customer managed key to use for encrypting inventory reports.
16343 16344 16345 16346 16347 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 16343 class SSEKMS < Struct.new( :key_id) SENSITIVE = [:key_id] include Aws::Structure end |