SageMakerPipelineParameter

Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.

Amazon Web ServicesEvent-DrivenIntegrationMessagingServerless

Properties

Name Type Description
Name object
Value object
View JSON Schema on GitHub

JSON Schema

amazon-eventbridge-pipes-sage-maker-pipeline-parameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-schema/amazon-eventbridge-pipes-sage-maker-pipeline-parameter-schema.json",
  "title": "SageMakerPipelineParameter",
  "description": "Name/Value pair of a parameter to start execution of a SageMaker Model Building Pipeline.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SageMakerPipelineParameterName"
        },
        {
          "description": "Name of parameter to start execution of a SageMaker Model Building Pipeline."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SageMakerPipelineParameterValue"
        },
        {
          "description": "Value of parameter to start execution of a SageMaker Model Building Pipeline."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Value"
  ]
}