Class: Aws::S3::DirectoryDownloader::ObjectProducer::DownloadEntry Private
- Inherits:
-
Object
- Object
- Aws::S3::DirectoryDownloader::ObjectProducer::DownloadEntry
- 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
- #error ⇒ Object readonly private
- #params ⇒ Object readonly private
- #path ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ DownloadEntry
constructor
private
A new instance of DownloadEntry.
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
#error ⇒ Object (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 |
#params ⇒ Object (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 |
#path ⇒ Object (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 |