gpt4 book ai didi

amazon-web-services - Aws CDK : Api gateway, sagemaker 集成,SageMakerRuntime 类型的 AWS 服务不支持错误

转载 作者:行者123 更新时间:2023-12-03 07:35:23 30 4
gpt4 key购买 nike

当我将服务设置为 SageMakerRuntimeSageMaker 时,它会抛出错误 不支持 SagemakerRuntime 类型的 AWS 服务(服务:AmazonApiGateway;状态代码:400) ; 错误代码:BadRequestException; 我找不到有关受支持服务的文档。但是,当从控制台设置 api 网关时,我看到选项 SageMaker Runtime 和其余配置工作正常。

const integration = new AwsIntegration({
service: "SageMakerRuntime",
path: "endpoints/{endpointName}/invocations",
integrationHttpMethod: "POST",
options: {
credentialsRole: Role.fromRoleArn(
this,
"Execution role",
"<arn>"
)
}
});
const postMethod = api.root
.addResource(this.node.tryGetContext("serviceVersion"))
.addResource("endpoints")
.addResource("{endpointName}")
.addResource("inferences")
.addMethod("POST", integration);

最佳答案

SageMaker Runtime 在 CDK 中的服务名称是 runtime.sagemaker。将其作为服务参数传递,您应该可以开始了。

对于 CDK,服务名称使用的格式与 aws list-services 显示的格式不同。我在 ServiceName 下找到了这种格式: https://docs.aws.amazon.com/sdk-for-go/api/service/sagemakerruntime/

关于amazon-web-services - Aws CDK : Api gateway, sagemaker 集成,SageMakerRuntime 类型的 AWS 服务不支持错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61515517/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com