Class: Aws::S3::DirectoryDownloader::ObjectProducer::DownloadEntry Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-s3/directory_downloader.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ DownloadEntry

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of DownloadEntry.



219
220
221
222
223
# File 'lib/aws-sdk-s3/directory_downloader.rb', line 219

def initialize(opts = {})
  @path = opts[:path]
  @params = opts[:params]
  @error = opts[:error]
end

Instance Attribute Details

#errorObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



225
226
227
# File 'lib/aws-sdk-s3/directory_downloader.rb', line 225

def error
  @error
end

#paramsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



225
226
227
# File 'lib/aws-sdk-s3/directory_downloader.rb', line 225

def params
  @params
end

#pathObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



225
226
227
# File 'lib/aws-sdk-s3/directory_downloader.rb', line 225

def path
  @path
end