Class: Aws::S3::Types::IndexDocument

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

{
  suffix: "Suffix", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#suffixString

A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.

Returns:

  • (String)


4005
4006
4007
4008
# File 'lib/aws-sdk-s3/types.rb', line 4005

class IndexDocument < Struct.new(
  :suffix)
  include Aws::Structure
end