Import Workspace Image
workspaces_import_workspace_image | R Documentation |
Imports the specified Windows 10 or 11 Bring Your Own License (BYOL) image into Amazon WorkSpaces¶
Description¶
Imports the specified Windows 10 or 11 Bring Your Own License (BYOL) image into Amazon WorkSpaces. The image must be an already licensed Amazon EC2 image that is in your Amazon Web Services account, and you must own the image. For more information about creating BYOL images, see Bring Your Own Windows Desktop Licenses.
Usage¶
workspaces_import_workspace_image(Ec2ImageId, IngestionProcess,
ImageName, ImageDescription, Tags, Applications)
Arguments¶
Ec2ImageId |
[required] The identifier of the EC2 image. |
IngestionProcess |
[required] The ingestion process to be used when importing the
image, depending on which protocol you want to use for your BYOL
Workspace image, either PCoIP, WSP, or bring your own protocol (BYOP).
To use DCV, specify a value that ends in For non-GPU-enabled bundles (bundles other than Graphics or
GraphicsPro), specify The |
ImageName |
[required] The name of the WorkSpace image. |
ImageDescription |
[required] The description of the WorkSpace image. |
Tags |
The tags. Each WorkSpaces resource can have a maximum of 50 tags. |
Applications |
If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 and 11 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses.
|
Value¶
A list with the following syntax:
list(
ImageId = "string"
)
Request syntax¶
svc$import_workspace_image(
Ec2ImageId = "string",
IngestionProcess = "BYOL_REGULAR"|"BYOL_GRAPHICS"|"BYOL_GRAPHICSPRO"|"BYOL_GRAPHICS_G4DN"|"BYOL_REGULAR_WSP"|"BYOL_GRAPHICS_G4DN_WSP"|"BYOL_REGULAR_BYOP"|"BYOL_GRAPHICS_G4DN_BYOP",
ImageName = "string",
ImageDescription = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
Applications = list(
"Microsoft_Office_2016"|"Microsoft_Office_2019"
)
)