Class: Aws::S3Control::Types::MatchObjectAge
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::MatchObjectAge
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
A filter condition that specifies the object age range of included objects in days. Only integers are supported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#days_greater_than ⇒ Integer
Specifies the maximum object age in days.
-
#days_less_than ⇒ Integer
Specifies the minimum object age in days.
Instance Attribute Details
#days_greater_than ⇒ Integer
Specifies the maximum object age in days. Must be a positive whole number, greater than the minimum object age and less than or equal to 2,147,483,647.
5385 5386 5387 5388 5389 5390 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5385 class MatchObjectAge < Struct.new( :days_greater_than, :days_less_than) SENSITIVE = [] include Aws::Structure end |
#days_less_than ⇒ Integer
Specifies the minimum object age in days. The value must be a positive whole number, greater than 0 and less than or equal to 2,147,483,647.
5385 5386 5387 5388 5389 5390 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5385 class MatchObjectAge < Struct.new( :days_greater_than, :days_less_than) SENSITIVE = [] include Aws::Structure end |