我听说我们需要为此创建一个AWS支持票证,而该选项不适用于"基本计划"。如果你们知道的话,请分享任何细节。感谢您的帮助。感谢
AWS最近在AWS CLI工具中添加了对此的支持。仍然没有办法通过网络面板来实现。要通过CLI执行此操作,请执行以下步骤。
使用源帐户的凭据:
aws workspaces describe-workspace-images --region <source-region>
aws workspaces update-workspace-image-permission --image-id <source-image-id> --region <source-region> --shared-account-id <target-account-id> --allow-copy-image
aws workspaces describe-workspace-image-permissions --image-id <source-image-id> --region <source-region>
然后使用目标帐户凭据:
aws workspaces describe-workspace-images --image-ids <source-image-id> --region <source-region> --image-type SHARED
aws workspaces copy-workspace-image --source-image-id <source-image-id> --source-region <source-region> --name <new-image-name> --region <source-region>
其中<source-region>
是例如us-east-1
。
复制将需要一些时间,在此期间,图像状态将为PENDING
。我今天刚做了这个,大概花了15分钟。
您需要联系AWS支持。