Using the aws sagemaker cli tools it's possible to invoke endpoint that are hosted in sagemaker using a command like:
aws sagemaker-runtime invoke-endpoint --body file://container/local_test/payload.json \ --endpoint-name $(DEPLOYMENT_NAME)-staging \ --content-type application/json \ --accept application/json \ output.json By default, this command goes to the /invocations endpoint. Is it possible to go to a different endpoint? For example, if I implemented a health-report endpoint? It's definately possible to make one as in the BYOM example. I'm just not sure how I'd access it.
Thanks!