is there any boto3 API available to share the appstream image between the AWS accounts.

0

we have the appstream image in one account and we want to share this appstream image across the other aws accounts we have under the root OU.

is there any boto3 API available to share the appstream image between the AWS accounts?

已提问 2 年前366 查看次数
2 回答
2
  • thanks for sharing it. i tested it, it is working fine. but with this, i can share the image to only one account. is there is any way to share the image with multiple accounts at a time.

  • The method only takes one account ID. You will have to loop or iterate through and make the call with each account ID

  • For example here is some pseudocode:

    accounts = [11111111111111, 22222222222222, 33333333333333]

    client = boto3.client('appstream')

    def share_image(account): client.update_image_permissions( Name='string', SharedAccountId=account, ImagePermissions={ 'allowFleet': True|False, 'allowImageBuilder': True|False } )

    for account in accounts: share_image(account)

1

You can use the AppStream 2.0 UpdateImagePermissions API (Boto3 doc) to add permissions for another AWS account ID to access the image, either with image builder permissions, fleet permissions, or both. This allows you to share an image within the same region with another AWS account.

You can learn more about the specific permissions in the Administrator Guide - Administer your Amazon AppStream 2.0 Images.

Hope this helps.

专家
已回答 2 年前
  • hi Murali,

    thanks for sharing it. i tested it, it is working fine. but with this, i can share the image to only one account. is there is any way to share the image with multiple accounts at a time.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则