{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-pipes/refs/heads/main/json-structure/amazon-eventbridge-pipes-sage-maker-pipeline-parameter-structure.json", "name": "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" ] }