Skip to main content

ml_model_transform_jobs

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

Overview

Nameml_model_transform_jobs
TypeResource
Idaws.neptunedata.ml_model_transform_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the model-transform job to be retrieved.
base_processing_jobobjectThe base data processing job.
modelsarrayA list of the configuration information for the models being used.
remote_model_transform_jobobjectThe remote model transform job.
statusstringThe status of the model-transform job.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ml_model_transform_jobselectid, regionneptuneIamRoleArnGets information about a specified model transform job. See Use a trained model to generate new model artifacts. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetMLModelTransformJobStatus IAM action in that cluster.
list_ml_model_transform_jobsselectregionmaxItems, neptuneIamRoleArnReturns a list of model transform job IDs. See Use a trained model to generate new model artifacts. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:ListMLModelTransformJobs IAM action in that cluster.

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
idstringThe unique identifier of the model-transform job to be reetrieved.
regionstringAWS region (default: us-east-1)
maxItemsintegerThe maximum number of items to return (from 1 to 1024; the default is 10).
neptuneIamRoleArnstringThe ARN of an IAM role that provides Neptune access to SageMaker and Amazon S3 resources. This must be listed in your DB cluster parameter group or an error will occur.

SELECT examples

Gets information about a specified model transform job. See Use a trained model to generate new model artifacts. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetMLModelTransformJobStatus IAM action in that cluster.

SELECT
id,
base_processing_job,
models,
remote_model_transform_job,
status
FROM aws.neptunedata.ml_model_transform_jobs
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND neptuneIamRoleArn = '{{ neptuneIamRoleArn }}'
;