多容器端點 - Amazon SageMaker

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

多容器端點

SageMaker 多容器端點可讓客戶在單一 SageMaker 端點上部署使用不同模型或架構的多個容器。容器可按順序作為推論管道執行,或者透過直接調用個別存取每個容器,以提高端點使用率並最佳化成本。

如需有關如何依序調用多容器端點中容器的資訊,請參閱Amazon 中的推論管道 SageMaker

如需有關調用多容器端點中特定容器的資訊,請參閱透過直接調用調用多容器端點

下列政策只有在 TargetContainerHostname欄位的值符合其中一個指定規則表達式時,才能允許 invoke_endpoint請求。

{ "Version": "2012-10-17", "Statement": [ { "Action": [ "sagemaker:InvokeEndpoint" ], "Effect": "Allow", "Resource": "arn:aws:sagemaker:region:account-id:endpoint/endpoint_name", "Condition": { "StringLike": { "sagemaker:TargetContainerHostname": ["customIps*", "common*"] } } } ] }

TargetContainerHostname欄位的值符合 Deny陳述式中指定的規則表達式之一時,下列政策會拒絕 invoke_endpoint請求。

{ "Version": "2012-10-17", "Statement": [ { "Action": [ "sagemaker:InvokeEndpoint" ], "Effect": "Allow", "Resource": "arn:aws:sagemaker:region:account-id:endpoint/endpoint_name", "Condition": { "StringLike": { "sagemaker:TargetContainerHostname": ["*"] } } }, { "Action": [ "sagemaker:InvokeEndpoint" ], "Effect": "Deny", "Resource": "arn:aws:sagemaker:region:account-id:endpoint/endpoint_name", "Condition": { "StringLike": { "sagemaker:TargetContainerHostname": ["special*"] } } } ] }

如需 SageMaker 條件金鑰的相關資訊,請參閱 AWS Identity and Access Management 使用者指南 中的 的條件金鑰 SageMaker