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

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

Overview

Note:

When making an API call, you may pass LifecycleRuleFilter data as a hash:

{
  prefix: "Prefix",
  tag: {
    key: "ObjectKey", # required
    value: "Value", # required
  },
  object_size_greater_than: 1,
  object_size_less_than: 1,
  and: {
    prefix: "Prefix",
    tags: [
      {
        key: "ObjectKey", # required
        value: "Value", # required
      },
    ],
    object_size_greater_than: 1,
    object_size_less_than: 1,
  },
}

The ‘Filter` is used to identify objects that a Lifecycle Rule applies to. A `Filter` must have exactly one of `Prefix`, `Tag`, or `And` specified.

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.



8486
8487
8488
8489
8490
8491
8492
8493
8494
# File 'lib/aws-sdk-s3/types.rb', line 8486

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)


8486
8487
8488
8489
8490
8491
8492
8493
8494
# File 'lib/aws-sdk-s3/types.rb', line 8486

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)


8486
8487
8488
8489
8490
8491
8492
8493
8494
# File 'lib/aws-sdk-s3/types.rb', line 8486

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].

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html#object-key-xml-related-constraints

Returns:

  • (String)


8486
8487
8488
8489
8490
8491
8492
8493
8494
# File 'lib/aws-sdk-s3/types.rb', line 8486

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.

Returns:



8486
8487
8488
8489
8490
8491
8492
8493
8494
# File 'lib/aws-sdk-s3/types.rb', line 8486

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