Class: Aws::S3::Types::MetricsAndOperator
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::S3::Types::MetricsAndOperator
 
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #access_point_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The access point ARN used when evaluating an ‘AND` predicate. 
- 
  
    
      #prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The prefix used when evaluating an AND predicate. 
- 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of tags used when evaluating an AND predicate. 
Instance Attribute Details
#access_point_arn ⇒ String
The access point ARN used when evaluating an ‘AND` predicate.
| 11567 11568 11569 11570 11571 11572 11573 | # File 'lib/aws-sdk-s3/types.rb', line 11567 class MetricsAndOperator < Struct.new( :prefix, :tags, :access_point_arn) SENSITIVE = [] include Aws::Structure end | 
#prefix ⇒ String
The prefix used when evaluating an AND predicate.
| 11567 11568 11569 11570 11571 11572 11573 | # File 'lib/aws-sdk-s3/types.rb', line 11567 class MetricsAndOperator < Struct.new( :prefix, :tags, :access_point_arn) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Array<Types::Tag>
The list of tags used when evaluating an AND predicate.
| 11567 11568 11569 11570 11571 11572 11573 | # File 'lib/aws-sdk-s3/types.rb', line 11567 class MetricsAndOperator < Struct.new( :prefix, :tags, :access_point_arn) SENSITIVE = [] include Aws::Structure end |