本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
使用 EKS的範例EMR上的 Amazon AWS CLI
下列程式碼範例說明如何在 EMR上使用 AWS Command Line Interface 搭配 Amazon 來執行動作和實作常見案例EKS。
Actions 是大型程式的程式碼摘錄,必須在內容中執行。雖然動作會示範如何呼叫個別服務函數,但您可以在相關案例中查看內容中的動作。
每個範例都包含完整原始程式碼的連結,您可以在其中找到如何在內容中設定和執行程式碼的指示。
主題
動作
下列程式碼範例示範如何使用 update-role-trust-policy
。
- AWS CLI
-
更新要與 Amazon EMR on 搭配使用之IAM角色的信任政策 EKS
此範例命令會更新名為 example_iam_role 之角色的信任政策,以便其可與 EMR 上的 Amazon 搭配使用EKS,以及來自名為 example_cluster 之EKS叢集的 example_namespace 命名空間。
命令:
aws emr-containers update-role-trust-policy \ --cluster example_cluster \ --namespace example_namespace \ --role-name example_iam_role
輸出:
If the trust policy has already been updated, then the output will be: Trust policy statement already exists for role example_iam_role. No changes were made! If the trust policy has not been updated yet, then the output will be: Successfully updated trust policy of role example_iam_role.
-
如需API詳細資訊,請參閱 命令參考 UpdateRoleTrustPolicy
中的 。 AWS CLI
-