Class: Aws::S3Control::Types::GeneratedManifestEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::GeneratedManifestEncryption
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
The encryption configuration to use when storing the generated manifest.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ssekms ⇒ Types::SSEKMSEncryption
Configuration details on how SSE-KMS is used to encrypt generated manifest objects.
-
#sses3 ⇒ Types::SSES3Encryption
Specifies the use of SSE-S3 to encrypt generated manifest objects.
Instance Attribute Details
#ssekms ⇒ Types::SSEKMSEncryption
Configuration details on how SSE-KMS is used to encrypt generated manifest objects.
2193 2194 2195 2196 2197 2198 |
# File 'lib/aws-sdk-s3control/types.rb', line 2193 class GeneratedManifestEncryption < Struct.new( :sses3, :ssekms) SENSITIVE = [] include Aws::Structure end |
#sses3 ⇒ Types::SSES3Encryption
Specifies the use of SSE-S3 to encrypt generated manifest objects.
2193 2194 2195 2196 2197 2198 |
# File 'lib/aws-sdk-s3control/types.rb', line 2193 class GeneratedManifestEncryption < Struct.new( :sses3, :ssekms) SENSITIVE = [] include Aws::Structure end |