Class: Aws::S3::Types::InventoryEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::InventoryEncryption
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass InventoryEncryption data as a hash:
{
sses3: {
},
ssekms: {
key_id: "SSEKMSKeyId", # required
},
}
Contains the type of server-side encryption used to encrypt the 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.
7930 7931 7932 7933 7934 7935 |
# File 'lib/aws-sdk-s3/types.rb', line 7930 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.
7930 7931 7932 7933 7934 7935 |
# File 'lib/aws-sdk-s3/types.rb', line 7930 class InventoryEncryption < Struct.new( :sses3, :ssekms) SENSITIVE = [] include Aws::Structure end |