Class: Aws::S3::Types::LifecycleRuleFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb

Overview

The Filter is used to identify objects that a Lifecycle Rule applies to. A Filter can have exactly one of Prefix, Tag, ObjectSizeGreaterThan, ObjectSizeLessThan, or And specified. If the Filter element is left empty, the Lifecycle Rule applies to all objects in the bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#andTypes::LifecycleRuleAndOperator

This is used in a Lifecycle Rule Filter to apply a logical AND to two or more predicates. The Lifecycle Rule will apply to any object matching all of the predicates configured inside the And operator.



10285
10286
10287
10288
10289
10290
10291
10292
10293
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10285

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :object_size_greater_than,
  :object_size_less_than,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#object_size_greater_thanInteger

Minimum object size to which the rule applies.

Returns:

  • (Integer)


10285
10286
10287
10288
10289
10290
10291
10292
10293
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10285

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :object_size_greater_than,
  :object_size_less_than,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#object_size_less_thanInteger

Maximum object size to which the rule applies.

Returns:

  • (Integer)


10285
10286
10287
10288
10289
10290
10291
10292
10293
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10285

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :object_size_greater_than,
  :object_size_less_than,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

Prefix identifying one or more objects to which the rule applies.

Replacement must be made for object keys containing special characters (such as carriage returns) when using XML requests. For more information, see XML related object key constraints.

Returns:

  • (String)


10285
10286
10287
10288
10289
10290
10291
10292
10293
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10285

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :object_size_greater_than,
  :object_size_less_than,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#tagTypes::Tag

This tag must exist in the object's tag set in order for the rule to apply.

This parameter applies to general purpose buckets only. It is not supported for directory bucket lifecycle configurations.

Returns:



10285
10286
10287
10288
10289
10290
10291
10292
10293
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 10285

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :object_size_greater_than,
  :object_size_less_than,
  :and)
  SENSITIVE = []
  include Aws::Structure
end