Schedule jobs
Last updated
"mappingProjectId": "<mapping project id>",
"targetEntityTypeId": "new_target_entity",
"packageId": "base",
"label": "Scheduled Mapping Job Target",
"addSourceAttribute": true## Amazon Bucket file ingest
Files stored in an [Amazon Bucket](http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingBucket.html) can be imported automatically using a Bucket Job.
#### parameters
| name | description |
|----------------|-------------------------------------------------------------------|
| bucket | the name of the bucket to download from |
| key | the key for the file you wish to download from the bucket |
| expression | boolean stating if the key was filled out as an exact match or a regular expression. If the key is an expression the most recent matching file is imported. |
| accessKey | the access key from your amazon bucket account |
| secretKey | the secret key from your amazon bucket account |
| region | the region in which the amazon bucket is located |
| targetEntityId | the name of the table to import to, this is an optional field used for files that have a different sheet name instead of the targeted entityType |
| extension | file extension, this is an optional paramater that is needed in case of a different format than excel |
For example:
```json
{
"bucket":"[BUCKET NAME]",
"key":"testplan/emx",
"expression":false,
"accessKey":"[ACCESS_KEY]",
"secretKey":"[SECRET_KEY]",
"region":"eu-west-1"
}