Class: Aws::S3::Types::SSEKMS
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::SSEKMS
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass SSEKMS data as a hash:
{
key_id: "SSEKMSKeyId", # required
}
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 AWS Key Management Service (AWS KMS) symmetric customer managed customer master key (CMK) to use for encrypting inventory reports.
Instance Attribute Details
#key_id ⇒ String
Specifies the ID of the AWS Key Management Service (AWS KMS) symmetric customer managed customer master key (CMK) to use for encrypting inventory reports.
13696 13697 13698 13699 13700 |
# File 'lib/aws-sdk-s3/types.rb', line 13696 class SSEKMS < Struct.new( :key_id) SENSITIVE = [:key_id] include Aws::Structure end |