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
},
access_point_arn: "AccessPointArn",
and: {
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
access_point_arn: "AccessPointArn",
},
},
},
expected_bucket_owner: "AccountId",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the bucket for which the metrics configuration is set.
-
#expected_bucket_owner ⇒ String
The account ID of the expected bucket owner.
-
#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.
12102 12103 12104 12105 12106 12107 12108 12109 |
# File 'lib/aws-sdk-s3/types.rb', line 12102 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#expected_bucket_owner ⇒ String
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code ‘403 Forbidden` (access denied).
12102 12103 12104 12105 12106 12107 12108 12109 |
# File 'lib/aws-sdk-s3/types.rb', line 12102 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID used to identify the metrics configuration.
12102 12103 12104 12105 12106 12107 12108 12109 |
# File 'lib/aws-sdk-s3/types.rb', line 12102 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |
#metrics_configuration ⇒ Types::MetricsConfiguration
Specifies the metrics configuration.
12102 12103 12104 12105 12106 12107 12108 12109 |
# File 'lib/aws-sdk-s3/types.rb', line 12102 class PutBucketMetricsConfigurationRequest < Struct.new( :bucket, :id, :metrics_configuration, :expected_bucket_owner) SENSITIVE = [] include Aws::Structure end |