Amazon Neptune · Schema

CreateMLEndpointInput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
id string Unique identifier for the endpoint.
mlModelTrainingJobId string Job ID from a completed training job.
mlModelTransformJobId string Job ID from a completed transform job.
update boolean Whether this is an update request.
neptuneIamRoleArn string
modelName string
instanceType string
instanceCount integer
volumeEncryptionKMSKey string
View JSON Schema on GitHub

JSON Schema

amazon-neptune-createmlendpointinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateMLEndpointInput",
  "title": "CreateMLEndpointInput",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the endpoint."
    },
    "mlModelTrainingJobId": {
      "type": "string",
      "description": "Job ID from a completed training job."
    },
    "mlModelTransformJobId": {
      "type": "string",
      "description": "Job ID from a completed transform job."
    },
    "update": {
      "type": "boolean",
      "description": "Whether this is an update request.",
      "default": false
    },
    "neptuneIamRoleArn": {
      "type": "string"
    },
    "modelName": {
      "type": "string",
      "enum": [
        "rgcn",
        "kge",
        "transe",
        "distmult",
        "rotate"
      ]
    },
    "instanceType": {
      "type": "string",
      "default": "ml.m5.xlarge"
    },
    "instanceCount": {
      "type": "integer",
      "default": 1
    },
    "volumeEncryptionKMSKey": {
      "type": "string"
    }
  }
}