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
  },
  and: {
    prefix: "Prefix",
    tags: [
      {
        key: "ObjectKey", # required
        value: "Value", # required
      },
    ],
  },
}

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.

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.



4651
4652
4653
4654
4655
4656
# File 'lib/aws-sdk-s3/types.rb', line 4651

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  include Aws::Structure
end

#prefixString

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

Returns:

  • (String)


4651
4652
4653
4654
4655
4656
# File 'lib/aws-sdk-s3/types.rb', line 4651

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  include Aws::Structure
end

#tagTypes::Tag

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

Returns:



4651
4652
4653
4654
4655
4656
# File 'lib/aws-sdk-s3/types.rb', line 4651

class LifecycleRuleFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  include Aws::Structure
end