Class: Aws::S3::Types::AccelerateConfiguration

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

{
  status: "Enabled", # accepts Enabled, Suspended
}

Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

Specifies the transfer acceleration status of the bucket.

Returns:

  • (String)


130
131
132
133
# File 'lib/aws-sdk-s3/types.rb', line 130

class AccelerateConfiguration < Struct.new(
  :status)
  include Aws::Structure
end