Class: Aws::S3::Types::DeleteBucketIntelligentTieringConfigurationRequest

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

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.

Returns:

  • (String)


2882
2883
2884
2885
2886
2887
# File 'lib/aws-sdk-s3/types.rb', line 2882

class DeleteBucketIntelligentTieringConfigurationRequest < Struct.new(
  :bucket,
  :id)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The ID used to identify the S3 Intelligent-Tiering configuration.

Returns:

  • (String)


2882
2883
2884
2885
2886
2887
# File 'lib/aws-sdk-s3/types.rb', line 2882

class DeleteBucketIntelligentTieringConfigurationRequest < Struct.new(
  :bucket,
  :id)
  SENSITIVE = []
  include Aws::Structure
end