I'm trying to invoke the iris endpointfrom the SageMaker example notebooks using the aws cli. I've tried using the following command:
!aws sagemaker-runtime invoke-endpoint \ --endpoint-name sagemaker-tensorflow-py2-cpu-2018-03-19-21-27-52-956 \ --body "[6.4, 3.2, 4.5, 1.5]" \ --content-type "application/json" \ output.json I get the following response:
{ "InvokedProductionVariant": "AllTraffic", "ContentType": "*/*" } What am I doing wrong?