Class: Aws::S3::Types::DeleteBucketAnalyticsConfigurationRequest

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the bucket from which an analytics configuration is deleted.

Returns:

  • (String)


1683
1684
1685
1686
1687
# File 'lib/aws-sdk-s3/types.rb', line 1683

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

#idString

The identifier used to represent an analytics configuration.

Returns:

  • (String)


1683
1684
1685
1686
1687
# File 'lib/aws-sdk-s3/types.rb', line 1683

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