Class: Aws::S3::Types::ObjectEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ObjectEncryption
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Note:
ObjectEncryption is a union - when making an API calls you must set exactly one of the members.
The updated server-side encryption type for this object. The
UpdateObjectEncryption operation supports the SSE-S3 and SSE-KMS
encryption types.
Valid Values: SSES3 | SSEKMS
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ssekms ⇒ Types::SSEKMSEncryption
Specifies to update the object encryption type to server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#ssekms ⇒ Types::SSEKMSEncryption
Specifies to update the object encryption type to server-side encryption with Key Management Service (KMS) keys (SSE-KMS).
13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 13613 class ObjectEncryption < Struct.new( :ssekms, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Ssekms < ObjectEncryption; end class Unknown < ObjectEncryption; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
13613 13614 13615 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 13613 def unknown @unknown end |