Class: Aws::S3::Types::PutBucketMetricsConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::PutBucketMetricsConfigurationRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass PutBucketMetricsConfigurationRequest data as a hash:
{
bucket: "BucketName", # required
id: "MetricsId", # required
metrics_configuration: { # required
id: "MetricsId", # required
filter: {
prefix: "Prefix",
tag: {
key: "ObjectKey", # required
value: "Value", # required
},
and: {
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
},
},
},
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the bucket for which the metrics configuration is set.
-
#id ⇒ String
The ID used to identify the metrics configuration.
-
#metrics_configuration ⇒ Types::MetricsConfiguration
Specifies the metrics configuration.
Instance Attribute Details
#bucket ⇒ String
The name of the bucket for which the metrics configuration is set.
6322 6323 6324 6325 6326 6327 |
# File 'lib/aws-sdk-s3/types.rb', line 6322 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration) include Aws::Structure end |
#id ⇒ String
The ID used to identify the metrics configuration.
6322 6323 6324 6325 6326 6327 |
# File 'lib/aws-sdk-s3/types.rb', line 6322 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration) include Aws::Structure end |
#metrics_configuration ⇒ Types::MetricsConfiguration
Specifies the metrics configuration.
6322 6323 6324 6325 6326 6327 |
# File 'lib/aws-sdk-s3/types.rb', line 6322 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration) include Aws::Structure end |