Class: Aws::S3::Types::InventoryEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::InventoryEncryption
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Contains the type of server-side encryption used to encrypt the S3 Inventory results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ssekms ⇒ Types::SSEKMS
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
-
#sses3 ⇒ Types::SSES3
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
Instance Attribute Details
#ssekms ⇒ Types::SSEKMS
Specifies the use of SSE-KMS to encrypt delivered inventory reports.
10260 10261 10262 10263 10264 10265 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10260 class InventoryEncryption < Struct.new( :sses3, :ssekms) SENSITIVE = [] include Aws::Structure end |
#sses3 ⇒ Types::SSES3
Specifies the use of SSE-S3 to encrypt delivered inventory reports.
10260 10261 10262 10263 10264 10265 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10260 class InventoryEncryption < Struct.new( :sses3, :ssekms) SENSITIVE = [] include Aws::Structure end |