Class: Aws::S3::Types::IndexDocument
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::IndexDocument
- 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
-
#suffix ⇒ String
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.
Instance Attribute Details
#suffix ⇒ String
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.
3586 3587 3588 3589 |
# File 'lib/aws-sdk-s3/types.rb', line 3586 class IndexDocument < Struct.new( :suffix) include Aws::Structure end |