Class: Aws::S3::Types::ObjectLockConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ObjectLockConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
The container element for Object Lock configuration parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#object_lock_enabled ⇒ String
Indicates whether this bucket has an Object Lock configuration enabled.
-
#rule ⇒ Types::ObjectLockRule
Specifies the Object Lock rule for the specified object.
Instance Attribute Details
#object_lock_enabled ⇒ String
Indicates whether this bucket has an Object Lock configuration enabled. Enable ‘ObjectLockEnabled` when you apply `ObjectLockConfiguration` to a bucket.
11879 11880 11881 11882 11883 11884 |
# File 'lib/aws-sdk-s3/types.rb', line 11879 class ObjectLockConfiguration < Struct.new( :object_lock_enabled, :rule) SENSITIVE = [] include Aws::Structure end |
#rule ⇒ Types::ObjectLockRule
Specifies the Object Lock rule for the specified object. Enable the this rule when you apply ‘ObjectLockConfiguration` to a bucket. Bucket settings require both a mode and a period. The period can be either `Days` or `Years` but you must select one. You cannot specify `Days` and `Years` at the same time.
11879 11880 11881 11882 11883 11884 |
# File 'lib/aws-sdk-s3/types.rb', line 11879 class ObjectLockConfiguration < Struct.new( :object_lock_enabled, :rule) SENSITIVE = [] include Aws::Structure end |