Amazon Neptune · Schema

StartMLModelTransformJobInput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
id string
dataProcessingJobId string
mlModelTrainingJobId string
trainingJobName string
modelTransformOutputS3Location string S3 location for transform output.
sagemakerIamRoleArn string
neptuneIamRoleArn string
baseProcessingInstanceType string
baseProcessingInstanceVolumeSizeInGB integer
subnets array
securityGroupIds array
volumeEncryptionKMSKey string
s3OutputEncryptionKMSKey string
enableInterContainerTrafficEncryption boolean
customModelTransformParameters object
View JSON Schema on GitHub

JSON Schema

amazon-neptune-startmlmodeltransformjobinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartMLModelTransformJobInput",
  "title": "StartMLModelTransformJobInput",
  "type": "object",
  "required": [
    "modelTransformOutputS3Location"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "dataProcessingJobId": {
      "type": "string"
    },
    "mlModelTrainingJobId": {
      "type": "string"
    },
    "trainingJobName": {
      "type": "string"
    },
    "modelTransformOutputS3Location": {
      "type": "string",
      "description": "S3 location for transform output."
    },
    "sagemakerIamRoleArn": {
      "type": "string"
    },
    "neptuneIamRoleArn": {
      "type": "string"
    },
    "baseProcessingInstanceType": {
      "type": "string"
    },
    "baseProcessingInstanceVolumeSizeInGB": {
      "type": "integer"
    },
    "subnets": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "securityGroupIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "volumeEncryptionKMSKey": {
      "type": "string"
    },
    "s3OutputEncryptionKMSKey": {
      "type": "string"
    },
    "enableInterContainerTrafficEncryption": {
      "type": "boolean",
      "default": true
    },
    "customModelTransformParameters": {
      "type": "object",
      "properties": {
        "sourceS3DirectoryPath": {
          "type": "string"
        },
        "transformEntryPointScript": {
          "type": "string"
        }
      }
    }
  }
}