Class: Aws::S3::Types::LifecycleRuleAndOperator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::LifecycleRuleAndOperator
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass LifecycleRuleAndOperator data as a hash:
{
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
}
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.
Instance Attribute Summary collapse
- #prefix ⇒ String
-
#tags ⇒ Array<Types::Tag>
All of these tags must exist in the object’s tag set in order for the rule to apply.
Instance Attribute Details
#prefix ⇒ String
4178 4179 4180 4181 4182 |
# File 'lib/aws-sdk-s3/types.rb', line 4178 class LifecycleRuleAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
All of these tags must exist in the object’s tag set in order for the rule to apply.
4178 4179 4180 4181 4182 |
# File 'lib/aws-sdk-s3/types.rb', line 4178 class LifecycleRuleAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |