@cumulus/move-granules 9.8.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.js +12278 -9266
- package/dist/lambda.zip +0 -0
- package/dist/schemas/config.json +4 -0
- package/dist/schemas/input.json +34 -7
- package/dist/schemas/input.json.template +24 -0
- package/dist/schemas/output.json +56 -17
- package/dist/schemas/output.json.template +43 -0
- package/index.js +62 -46
- package/package.json +14 -10
- package/schemas/config.json +4 -0
- package/schemas/input.json +34 -7
- package/schemas/input.json.template +24 -0
- package/schemas/output.json +56 -17
- package/schemas/output.json.template +43 -0
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ Config object fields:
|
|
|
18
18
|
| distribution_endpoint | string | (required) | | The API distribution endpoint
|
|
19
19
|
| duplicateHandling | string | `error` | <ul><li>`error` - Throws an error on duplicates</li><li>`replace` - Replaces the existing file</li><li>`skip` - Skips the duplicate file</li><li>`version` - Adds a suffix to the existing filename to avoid a clash</li></ul> | Specifies how duplicate filenames should be handled
|
|
20
20
|
| moveStagedFiles | boolean | `true` | | Can set to `false` to skip moving files from the staging location. Defaults to `true`.
|
|
21
|
+
| s3MultipartChunksizeMb | number | | | S3 multipart upload chunk size in MB. If none is specified, the default `default_s3_multipart_chunksize_mb` is used.
|
|
21
22
|
|
|
22
23
|
### Input
|
|
23
24
|
|