Class: Aws::S3Control::Types::S3UpdateObjectEncryptionOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::S3UpdateObjectEncryptionOperation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
With the UpdateObjectEncryption operation, you can atomically update the server-side encryption type of an existing object in a general purpose bucket without any data movement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#object_encryption ⇒ Types::ObjectEncryption
The updated server-side encryption type for this S3 object.
Instance Attribute Details
#object_encryption ⇒ Types::ObjectEncryption
The updated server-side encryption type for this S3 object. The UpdateObjectEncryption operation supports the SSE-KMS encryption type.
8077 8078 8079 8080 8081 |
# File 'lib/aws-sdk-s3control/types.rb', line 8077 class S3UpdateObjectEncryptionOperation < Struct.new( :object_encryption) SENSITIVE = [] include Aws::Structure end |