Class: Aws::S3::Types::DeleteBucketMetricsConfigurationRequest

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 DeleteBucketMetricsConfigurationRequest data as a hash:

{
  bucket: "BucketName", # required
  id: "MetricsId", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the bucket containing the metrics configuration to delete.

Returns:

  • (String)


1786
1787
1788
1789
1790
# File 'lib/aws-sdk-s3/types.rb', line 1786

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

#idString

The ID used to identify the metrics configuration.

Returns:

  • (String)


1786
1787
1788
1789
1790
# File 'lib/aws-sdk-s3/types.rb', line 1786

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