Class: Aws::S3::Types::MetricsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::MetricsFilter
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Specifies a metrics configuration filter. The metrics configuration only includes objects that meet the filter’s criteria. A filter must be a prefix, an object tag, an access point ARN, or a conjunction (MetricsAndOperator). For more information, see [PutBucketMetricsConfiguration].
[1]: docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketMetricsConfiguration.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_point_arn ⇒ String
The access point ARN used when evaluating a metrics filter.
-
#and ⇒ Types::MetricsAndOperator
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter.
-
#prefix ⇒ String
The prefix used when evaluating a metrics filter.
-
#tag ⇒ Types::Tag
The tag used when evaluating a metrics filter.
Instance Attribute Details
#access_point_arn ⇒ String
The access point ARN used when evaluating a metrics filter.
12146 12147 12148 12149 12150 12151 12152 12153 |
# File 'lib/aws-sdk-s3/types.rb', line 12146 class MetricsFilter < Struct.new( :prefix, :tag, :access_point_arn, :and) SENSITIVE = [] include Aws::Structure end |
#and ⇒ Types::MetricsAndOperator
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.
12146 12147 12148 12149 12150 12151 12152 12153 |
# File 'lib/aws-sdk-s3/types.rb', line 12146 class MetricsFilter < Struct.new( :prefix, :tag, :access_point_arn, :and) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The prefix used when evaluating a metrics filter.
12146 12147 12148 12149 12150 12151 12152 12153 |
# File 'lib/aws-sdk-s3/types.rb', line 12146 class MetricsFilter < Struct.new( :prefix, :tag, :access_point_arn, :and) SENSITIVE = [] include Aws::Structure end |
#tag ⇒ Types::Tag
The tag used when evaluating a metrics filter.
12146 12147 12148 12149 12150 12151 12152 12153 |
# File 'lib/aws-sdk-s3/types.rb', line 12146 class MetricsFilter < Struct.new( :prefix, :tag, :access_point_arn, :and) SENSITIVE = [] include Aws::Structure end |