Class: Aws::S3Control::Types::MatchObjectSize
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::MatchObjectSize
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
A filter condition that specifies the object size range of included objects in bytes. Only integers are supported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes_greater_than ⇒ Integer
Specifies the minimum object size in Bytes.
-
#bytes_less_than ⇒ Integer
Specifies the maximum object size in Bytes.
Instance Attribute Details
#bytes_greater_than ⇒ Integer
Specifies the minimum object size in Bytes. The value must be a positive number, greater than 0 and less than 5 TB.
5408 5409 5410 5411 5412 5413 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5408 class MatchObjectSize < Struct.new( :bytes_greater_than, :bytes_less_than) SENSITIVE = [] include Aws::Structure end |
#bytes_less_than ⇒ Integer
Specifies the maximum object size in Bytes. The value must be a positive number, greater than the minimum object size and less than 5 TB.
5408 5409 5410 5411 5412 5413 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5408 class MatchObjectSize < Struct.new( :bytes_greater_than, :bytes_less_than) SENSITIVE = [] include Aws::Structure end |