Frends.AmazonS3.DownloadObject / 3.0.0
Summary
Copies objects out of a bucket onto the agent's file system, selecting them by prefix and pattern rather than one key at a time. Authentication can be a pre-signed URL instead of keys, so a Process can fetch something it was handed a link to.
Typical use — pulling a batch of files down for local processing; use the read-oriented Tasks of other services when you want content in memory rather than on disk
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| BucketName | String |
– | Bucket |
AWS S3 bucket's name. |
| SourceDirectory | String |
– | directory/ |
Downloads all objects with this prefix. |
| SearchPattern | String |
* |
*.*, *file?.txt |
String pattern to search objects. |
| DownloadFromCurrentDirectoryOnly | Boolean |
True |
false |
Set to true to download objects from the current directory only. |
| TargetDirectory | String |
– | c:\temp, \\network\folder |
Destination directory where to create folders and files. |