Skip to main content

transformer_jobs

Creates, updates, deletes, gets or lists a transformer_jobs resource.

Overview

Nametransformer_jobs
TypeResource
Idaws.b2bi.transformer_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
messagestringReturns an optional error message, which gets populated when the job is not run successfully.
output_filesarrayReturns 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.
statusstringReturns the current state of the transformer job, either running, succeeded, or failed. (running, succeeded, failed)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_transformer_jobselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;