Class: Aws::S3::Types::AnalyticsAndOperator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AnalyticsAndOperator
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass AnalyticsAndOperator data as a hash:
{
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
}
Instance Attribute Summary collapse
-
#prefix ⇒ String
The prefix to use when evaluating an AND predicate.
-
#tags ⇒ Array<Types::Tag>
The list of tags to use when evaluating an AND predicate.
Instance Attribute Details
#prefix ⇒ String
The prefix to use when evaluating an AND predicate.
181 182 183 184 185 |
# File 'lib/aws-sdk-s3/types.rb', line 181 class AnalyticsAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags to use when evaluating an AND predicate.
181 182 183 184 185 |
# File 'lib/aws-sdk-s3/types.rb', line 181 class AnalyticsAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |