選取您的 Cookie 偏好設定

我們使用提供自身網站和服務所需的基本 Cookie 和類似工具。我們使用效能 Cookie 收集匿名統計資料,以便了解客戶如何使用我們的網站並進行改進。基本 Cookie 無法停用,但可以按一下「自訂」或「拒絕」以拒絕效能 Cookie。

如果您同意,AWS 與經核准的第三方也會使用 Cookie 提供實用的網站功能、記住您的偏好設定,並顯示相關內容,包括相關廣告。若要接受或拒絕所有非必要 Cookie,請按一下「接受」或「拒絕」。若要進行更詳細的選擇,請按一下「自訂」。

步驟 6:建立 SageMaker AI 筆記本IAM的政策

焦點模式
步驟 6:建立 SageMaker AI 筆記本IAM的政策 - AWS Glue

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

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

如果您計劃搭配開發端點使用 SageMaker AI 筆記本,您必須在建立筆記本時指定許可。您可用 AWS Identity and Access Management (IAM) 來提供這些許可。

建立 SageMaker AI 筆記本IAM的政策
  1. 登入 AWS Management Console 並在 開啟IAM主控台https://console.aws.amazon.com/iam/

  2. 在左側導覽窗格中選擇 Policies (政策)。

  3. 選擇 建立政策

  4. 建立政策頁面上,導覽至標籤以編輯 JSON。使用下列JSON陳述式建立政策文件。account-id 為您的環境編輯 region-codebucket-name和 。

    { "Version": "2012-10-17", "Statement": [ { "Action": [ "s3:ListBucket" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::bucket-name" ] }, { "Action": [ "s3:GetObject" ], "Effect": "Allow", "Resource": [ "arn:aws:s3:::bucket-name*" ] }, { "Action": [ "logs:CreateLogStream", "logs:DescribeLogStreams", "logs:PutLogEvents", "logs:CreateLogGroup" ], "Effect": "Allow", "Resource": [ "arn:aws:logs:region-code:account-id:log-group:/aws/sagemaker/*", "arn:aws:logs:region-code:account-id:log-group:/aws/sagemaker/*:log-stream:aws-glue-*" ] }, { "Action": [ "glue:UpdateDevEndpoint", "glue:GetDevEndpoint", "glue:GetDevEndpoints" ], "Effect": "Allow", "Resource": [ "arn:aws:glue:region-code:account-id:devEndpoint/*" ] }, { "Action": [ "sagemaker:ListTags" ], "Effect": "Allow", "Resource": [ "arn:aws:sagemaker:region-code:account-id:notebook-instance/*" ] } ] }

    接著選擇 Review policy (檢閱政策)。

    下表說明此政策授予的許可。

    Action Resource Description

    "s3:ListBucket*"

    "arn:aws:s3:::bucket-name"

    列出 Amazon S3 儲存貯體的許可。

    "s3:GetObject"

    "arn:aws:s3:::bucket-name*"

    准許取得 SageMaker AI 筆記本所使用的 Amazon S3 物件。

    "logs:CreateLogStream", "logs:DescribeLogStreams", "logs:PutLogEvents", "logs:CreateLogGroup"

    "arn:aws:logs:region-code:account-id:log-group:/aws/sagemaker/*", "arn:aws:logs:region-code:account-id:log-group:/aws/sagemaker/*:log-stream:aws-glue-*"

    准許從筆記本將日誌寫入 Amazon CloudWatch Logs。

    命名慣例:寫入名稱開頭為 aws-glue 的日誌群組。

    "glue:UpdateDevEndpoint", "glue:GetDevEndpoint", "glue:GetDevEndpoints"

    "arn:aws:glue:region-code:account-id:devEndpoint/*"

    准許從 SageMaker AI 筆記本使用開發端點。

    "sagemaker:ListTags"

    "arn:aws:sagemaker:region-code:account-id:notebook-instance/*"

    准許傳回 SageMaker AI 資源的標籤。AI SageMaker 筆記本上需要 aws-glue-dev-endpoint標籤,才能將筆記本連接到開發端點。

  5. Review Policy (檢閱政策) 畫面上,輸入 Policy Name (政策名稱),例如 AWSGlueSageMakerNotebook。輸入選用的說明,當您對政策滿意時,即可選擇 Create policy (建立政策)

隱私權網站條款Cookie 偏好設定
© 2025, Amazon Web Services, Inc.或其附屬公司。保留所有權利。