transformer_jobs
Creates, updates, deletes, gets or lists a transformer_jobs resource.
Overview
| Name | transformer_jobs |
| Type | Resource |
| Id | aws.b2bi.transformer_jobs |
Fields
The following fields are returned by SELECT queries:
- get_transformer_job
| Name | Datatype | Description |
|---|---|---|
message | string | Returns an optional error message, which gets populated when the job is not run successfully. |
output_files | array | Returns the location for the output files. If the caller specified a directory for the output, then this contains the full path to the output file, including the file name generated by the service. |
status | string | Returns the current state of the transformer job, either running, succeeded, or failed. (running, succeeded, failed) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_transformer_job | select | region | Returns the details of the transformer run, based on the Transformer job ID. If 30 days have elapsed since your transformer job was started, the system deletes it. So, if you run GetTransformerJob and supply a transformerId and transformerJobId for a job that was started more than 30 days previously, you receive a 404 response. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_transformer_job
Returns the details of the transformer run, based on the Transformer job ID. If 30 days have elapsed since your transformer job was started, the system deletes it. So, if you run GetTransformerJob and supply a transformerId and transformerJobId for a job that was started more than 30 days previously, you receive a 404 response.
SELECT
message,
output_files,
status
FROM aws.b2bi.transformer_jobs
WHERE region = '{{ region }}' -- required
;