Class: Aws::S3::Types::ObjectLockLegalHold
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ObjectLockLegalHold
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass ObjectLockLegalHold data as a hash:
{
status: "ON", # accepts ON, OFF
}
A Legal Hold configuration for an object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
Indicates whether the specified object has a Legal Hold in place.
Instance Attribute Details
#status ⇒ String
Indicates whether the specified object has a Legal Hold in place.
9493 9494 9495 9496 9497 |
# File 'lib/aws-sdk-s3/types.rb', line 9493 class ObjectLockLegalHold < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |