Class: Aws::S3::Types::PutBucketMetricsConfigurationRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bucketString

The name of the bucket for which the metrics configuration is set.

Returns:

  • (String)


6955
6956
6957
6958
6959
6960
# File 'lib/aws-sdk-s3/types.rb', line 6955

class PutBucketMetricsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :metrics_configuration)
  include Aws::Structure
end

#idString

The ID used to identify the metrics configuration.

Returns:

  • (String)


6955
6956
6957
6958
6959
6960
# File 'lib/aws-sdk-s3/types.rb', line 6955

class PutBucketMetricsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :metrics_configuration)
  include Aws::Structure
end

#metrics_configurationTypes::MetricsConfiguration

Specifies the metrics configuration.



6955
6956
6957
6958
6959
6960
# File 'lib/aws-sdk-s3/types.rb', line 6955

class PutBucketMetricsConfigurationRequest < Struct.new(
  :bucket,
  :id,
  :metrics_configuration)
  include Aws::Structure
end