Class: Aws::S3Control::Types::MatchObjectSize

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bytes_greater_thanInteger

Specifies the minimum object size in Bytes. The value must be a positive number, greater than 0 and less than 5 TB.

Returns:

  • (Integer)


5230
5231
5232
5233
5234
5235
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5230

class MatchObjectSize < Struct.new(
  :bytes_greater_than,
  :bytes_less_than)
  SENSITIVE = []
  include Aws::Structure
end

#bytes_less_thanInteger

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.

Returns:

  • (Integer)


5230
5231
5232
5233
5234
5235
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 5230

class MatchObjectSize < Struct.new(
  :bytes_greater_than,
  :bytes_less_than)
  SENSITIVE = []
  include Aws::Structure
end