Class: Aws::S3::Types::IntelligentTieringAndOperator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::IntelligentTieringAndOperator
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass IntelligentTieringAndOperator data as a hash:
{
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
}
A container for specifying S3 Intelligent-Tiering filters. The filters determine the subset of objects to which the rule applies.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#prefix ⇒ String
An object key name prefix that identifies the subset of objects to which the configuration applies.
-
#tags ⇒ Array<Types::Tag>
All of these tags must exist in the object's tag set in order for the configuration to apply.
Instance Attribute Details
#prefix ⇒ String
An object key name prefix that identifies the subset of objects to which the configuration applies.
6749 6750 6751 6752 6753 6754 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6749 class IntelligentTieringAndOperator < Struct.new( :prefix, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
All of these tags must exist in the object's tag set in order for the configuration to apply.
6749 6750 6751 6752 6753 6754 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6749 class IntelligentTieringAndOperator < Struct.new( :prefix, :tags) SENSITIVE = [] include Aws::Structure end |