DownloadObjects
Passes the name of a bucket and object to download.
Input
| Name | Type | Required | Accepts Output Streams | Description |
| Bucket | String | True | False | Bucket name where the object is located. |
| Object | String | False | False | Object name for the object that should be retrieved. If not specified, all the objects from the specified bucket will be retrieved. |
| LocalFolderPath | String | False | False | The path, or URI, to the file that will receive the data of the object. |
| ByteRangeStart | Long | False | False | The start of the byte range to download. |
| ByteRangeEnd | Long | False | False | The end of the byte range to download. |
| UpdatedStartDate | Datetime | False | False | The start of the date range to download objects. If not specified, objects will be downloaded from the beginning of the time until the UpdatedEndDate. |
| UpdatedEndDate | Datetime | False | False | The end of the date range to download objects. If not specified, objects will be downloaded from the specified UpdatedStartDate until the present day. |
| FileStream | String | False | True | An instance of an output stream where file data is written to. Only used if LocalFolderPath is not set. |
Result Set Columns
| Name | Type | Description |
| Status | String | Stored procedure execution status. |
| Content | String | If the LocalFolderPath input is empty the file content will be outputted as base64. |