Workspaces

This page documents function available when using the Workspaces module, created with @service Workspaces.

Index

Documentation

Main.Workspaces.associate_connection_aliasMethod
associate_connection_alias(alias_id, resource_id)
associate_connection_alias(alias_id, resource_id, params::Dict{String,<:Any})

Associates the specified connection alias with the specified directory to enable cross-Region redirection. For more information, see Cross-Region Redirection for Amazon WorkSpaces. Before performing this operation, call DescribeConnectionAliases to make sure that the current state of the connection alias is CREATED.

Arguments

  • alias_id: The identifier of the connection alias.
  • resource_id: The identifier of the directory to associate the connection alias with.
source
Main.Workspaces.associate_ip_groupsMethod
associate_ip_groups(directory_id, group_ids)
associate_ip_groups(directory_id, group_ids, params::Dict{String,<:Any})

Associates the specified IP access control group with the specified directory.

Arguments

  • directory_id: The identifier of the directory.
  • group_ids: The identifiers of one or more IP access control groups.
source
Main.Workspaces.authorize_ip_rulesMethod
authorize_ip_rules(group_id, user_rules)
authorize_ip_rules(group_id, user_rules, params::Dict{String,<:Any})

Adds one or more rules to the specified IP access control group. This action gives users permission to access their WorkSpaces from the CIDR address ranges specified in the rules.

Arguments

  • group_id: The identifier of the group.
  • user_rules: The rules to add to the group.
source
Main.Workspaces.copy_workspace_imageMethod
copy_workspace_image(name, source_image_id, source_region)
copy_workspace_image(name, source_image_id, source_region, params::Dict{String,<:Any})

Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.

Arguments

  • name: The name of the image.
  • source_image_id: The identifier of the source image.
  • source_region: The identifier of the source Region.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Description": A description of the image.
  • "Tags": The tags for the image.
source
Main.Workspaces.create_connection_aliasMethod
create_connection_alias(connection_string)
create_connection_alias(connection_string, params::Dict{String,<:Any})

Creates the specified connection alias for use with cross-Region redirection. For more information, see Cross-Region Redirection for Amazon WorkSpaces.

Arguments

  • connection_string: A connection string in the form of a fully qualified domain name (FQDN), such as www.example.com. After you create a connection string, it is always associated to your AWS account. You cannot recreate the same connection string with a different account, even if you delete all instances of it from the original account. The connection string is globally reserved for your account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Tags": The tags to associate with the connection alias.
source
Main.Workspaces.create_ip_groupMethod
create_ip_group(group_name)
create_ip_group(group_name, params::Dict{String,<:Any})

Creates an IP access control group. An IP access control group provides you with the ability to control the IP addresses from which users are allowed to access their WorkSpaces. To specify the CIDR address ranges, add rules to your IP access control group and then associate the group with your directory. You can add rules when you create the group or at any time using AuthorizeIpRules. There is a default IP access control group associated with your directory. If you don't associate an IP access control group with your directory, the default group is used. The default group includes a default rule that allows users to access their WorkSpaces from anywhere. You cannot modify the default IP access control group for your directory.

Arguments

  • group_name: The name of the group.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "GroupDesc": The description of the group.
  • "Tags": The tags. Each WorkSpaces resource can have a maximum of 50 tags.
  • "UserRules": The rules to add to the group.
source
Main.Workspaces.create_tagsMethod
create_tags(resource_id, tags)
create_tags(resource_id, tags, params::Dict{String,<:Any})

Creates the specified tags for the specified WorkSpaces resource.

Arguments

  • resource_id: The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, IP access control groups, and connection aliases.
  • tags: The tags. Each WorkSpaces resource can have a maximum of 50 tags.
source
Main.Workspaces.create_workspace_bundleMethod
create_workspace_bundle(bundle_description, bundle_name, compute_type, image_id, user_storage)
create_workspace_bundle(bundle_description, bundle_name, compute_type, image_id, user_storage, params::Dict{String,<:Any})

Creates the specified WorkSpace bundle. For more information about creating WorkSpace bundles, see Create a Custom WorkSpaces Image and Bundle.

Arguments

  • bundle_description: The description of the bundle.
  • bundle_name: The name of the bundle.
  • compute_type:
  • image_id: The identifier of the image that is used to create the bundle.
  • user_storage:

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "RootStorage":
  • "Tags": The tags associated with the bundle. To add tags at the same time when you're creating the bundle, you must create an IAM policy that grants your IAM user permissions to use workspaces:CreateTags.
source
Main.Workspaces.create_workspacesMethod
create_workspaces(workspaces)
create_workspaces(workspaces, params::Dict{String,<:Any})

Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created.

Arguments

  • workspaces: The WorkSpaces to create. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.delete_connection_aliasMethod
delete_connection_alias(alias_id)
delete_connection_alias(alias_id, params::Dict{String,<:Any})

Deletes the specified connection alias. For more information, see Cross-Region Redirection for Amazon WorkSpaces. If you will no longer be using a fully qualified domain name (FQDN) as the registration code for your WorkSpaces users, you must take certain precautions to prevent potential security issues. For more information, see Security Considerations if You Stop Using Cross-Region Redirection. To delete a connection alias that has been shared, the shared account must first disassociate the connection alias from any directories it has been associated with. Then you must unshare the connection alias from the account it has been shared with. You can delete a connection alias only after it is no longer shared with any accounts or associated with any directories.

Arguments

  • alias_id: The identifier of the connection alias to delete.
source
Main.Workspaces.delete_ip_groupMethod
delete_ip_group(group_id)
delete_ip_group(group_id, params::Dict{String,<:Any})

Deletes the specified IP access control group. You cannot delete an IP access control group that is associated with a directory.

Arguments

  • group_id: The identifier of the IP access control group.
source
Main.Workspaces.delete_tagsMethod
delete_tags(resource_id, tag_keys)
delete_tags(resource_id, tag_keys, params::Dict{String,<:Any})

Deletes the specified tags from the specified WorkSpaces resource.

Arguments

  • resource_id: The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, IP access control groups, and connection aliases.
  • tag_keys: The tag keys.
source
Main.Workspaces.delete_workspace_bundleMethod
delete_workspace_bundle()
delete_workspace_bundle(params::Dict{String,<:Any})

Deletes the specified WorkSpace bundle. For more information about deleting WorkSpace bundles, see Delete a Custom WorkSpaces Bundle or Image.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "BundleId": The identifier of the bundle.
source
Main.Workspaces.delete_workspace_imageMethod
delete_workspace_image(image_id)
delete_workspace_image(image_id, params::Dict{String,<:Any})

Deletes the specified image from your account. To delete an image, you must first delete any bundles that are associated with the image and unshare the image if it is shared with other accounts.

Arguments

  • image_id: The identifier of the image.
source
Main.Workspaces.deregister_workspace_directoryMethod
deregister_workspace_directory(directory_id)
deregister_workspace_directory(directory_id, params::Dict{String,<:Any})

Deregisters the specified directory. This operation is asynchronous and returns before the WorkSpace directory is deregistered. If any WorkSpaces are registered to this directory, you must remove them before you can deregister the directory. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.

Arguments

  • directory_id: The identifier of the directory. If any WorkSpaces are registered to this directory, you must remove them before you deregister the directory, or you will receive an OperationNotSupportedException error.
source
Main.Workspaces.describe_accountMethod
describe_account()
describe_account(params::Dict{String,<:Any})

Retrieves a list that describes the configuration of Bring Your Own License (BYOL) for the specified account.

source
Main.Workspaces.describe_account_modificationsMethod
describe_account_modifications()
describe_account_modifications(params::Dict{String,<:Any})

Retrieves a list that describes modifications to the configuration of Bring Your Own License (BYOL) for the specified account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_client_propertiesMethod
describe_client_properties(resource_ids)
describe_client_properties(resource_ids, params::Dict{String,<:Any})

Retrieves a list that describes one or more specified Amazon WorkSpaces clients.

Arguments

  • resource_ids: The resource identifier, in the form of directory IDs.
source
Main.Workspaces.describe_connection_alias_permissionsMethod
describe_connection_alias_permissions(alias_id)
describe_connection_alias_permissions(alias_id, params::Dict{String,<:Any})

Describes the permissions that the owner of a connection alias has granted to another AWS account for the specified connection alias. For more information, see Cross-Region Redirection for Amazon WorkSpaces.

Arguments

  • alias_id: The identifier of the connection alias.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults": The maximum number of results to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_connection_aliasesMethod
describe_connection_aliases()
describe_connection_aliases(params::Dict{String,<:Any})

Retrieves a list that describes the connection aliases used for cross-Region redirection. For more information, see Cross-Region Redirection for Amazon WorkSpaces.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "AliasIds": The identifiers of the connection aliases to describe.
  • "Limit": The maximum number of connection aliases to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
  • "ResourceId": The identifier of the directory associated with the connection alias.
source
Main.Workspaces.describe_ip_groupsMethod
describe_ip_groups()
describe_ip_groups(params::Dict{String,<:Any})

Describes one or more of your IP access control groups.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "GroupIds": The identifiers of one or more IP access control groups.
  • "MaxResults": The maximum number of items to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_tagsMethod
describe_tags(resource_id)
describe_tags(resource_id, params::Dict{String,<:Any})

Describes the specified tags for the specified WorkSpaces resource.

Arguments

  • resource_id: The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, IP access control groups, and connection aliases.
source
Main.Workspaces.describe_workspace_bundlesMethod
describe_workspace_bundles()
describe_workspace_bundles(params::Dict{String,<:Any})

Retrieves a list that describes the available WorkSpace bundles. You can filter the results using either bundle ID or owner, but not both.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "BundleIds": The identifiers of the bundles. You cannot combine this parameter with any other filter.
  • "NextToken": The token for the next set of results. (You received this token from a previous call.)
  • "Owner": The owner of the bundles. You cannot combine this parameter with any other filter. To describe the bundles provided by AWS, specify AMAZON. To describe the bundles that belong to your account, don't specify a value.
source
Main.Workspaces.describe_workspace_directoriesMethod
describe_workspace_directories()
describe_workspace_directories(params::Dict{String,<:Any})

Describes the available directories that are registered with Amazon WorkSpaces.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "DirectoryIds": The identifiers of the directories. If the value is null, all directories are retrieved.
  • "Limit": The maximum number of directories to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_workspace_image_permissionsMethod
describe_workspace_image_permissions(image_id)
describe_workspace_image_permissions(image_id, params::Dict{String,<:Any})

Describes the permissions that the owner of an image has granted to other AWS accounts for an image.

Arguments

  • image_id: The identifier of the image.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults": The maximum number of items to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_workspace_imagesMethod
describe_workspace_images()
describe_workspace_images(params::Dict{String,<:Any})

Retrieves a list that describes one or more specified images, if the image identifiers are provided. Otherwise, all images in the account are described.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "ImageIds": The identifier of the image.
  • "ImageType": The type (owned or shared) of the image.
  • "MaxResults": The maximum number of items to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.describe_workspace_snapshotsMethod
describe_workspace_snapshots(workspace_id)
describe_workspace_snapshots(workspace_id, params::Dict{String,<:Any})

Describes the snapshots for the specified WorkSpace.

Arguments

  • workspace_id: The identifier of the WorkSpace.
source
Main.Workspaces.describe_workspacesMethod
describe_workspaces()
describe_workspaces(params::Dict{String,<:Any})

Describes the specified WorkSpaces. You can filter the results by using the bundle identifier, directory identifier, or owner, but you can specify only one filter at a time.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "BundleId": The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.
  • "DirectoryId": The identifier of the directory. In addition, you can optionally specify a specific directory user (see UserName). You cannot combine this parameter with any other filter.
  • "Limit": The maximum number of items to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
  • "UserName": The name of the directory user. You must specify this parameter with DirectoryId.
  • "WorkspaceIds": The identifiers of the WorkSpaces. You cannot combine this parameter with any other filter. Because the CreateWorkspaces operation is asynchronous, the identifier it returns is not immediately available. If you immediately call DescribeWorkspaces with this identifier, no information is returned.
source
Main.Workspaces.describe_workspaces_connection_statusMethod
describe_workspaces_connection_status()
describe_workspaces_connection_status(params::Dict{String,<:Any})

Describes the connection status of the specified WorkSpaces.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
  • "WorkspaceIds": The identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.disassociate_connection_aliasMethod
disassociate_connection_alias(alias_id)
disassociate_connection_alias(alias_id, params::Dict{String,<:Any})

Disassociates a connection alias from a directory. Disassociating a connection alias disables cross-Region redirection between two directories in different AWS Regions. For more information, see Cross-Region Redirection for Amazon WorkSpaces. Before performing this operation, call DescribeConnectionAliases to make sure that the current state of the connection alias is CREATED.

Arguments

  • alias_id: The identifier of the connection alias to disassociate.
source
Main.Workspaces.disassociate_ip_groupsMethod
disassociate_ip_groups(directory_id, group_ids)
disassociate_ip_groups(directory_id, group_ids, params::Dict{String,<:Any})

Disassociates the specified IP access control group from the specified directory.

Arguments

  • directory_id: The identifier of the directory.
  • group_ids: The identifiers of one or more IP access control groups.
source
Main.Workspaces.import_workspace_imageMethod
import_workspace_image(ec2_image_id, image_description, image_name, ingestion_process)
import_workspace_image(ec2_image_id, image_description, image_name, ingestion_process, params::Dict{String,<:Any})

Imports the specified Windows 10 Bring Your Own License (BYOL) image into Amazon WorkSpaces. The image must be an already licensed Amazon EC2 image that is in your AWS account, and you must own the image. For more information about creating BYOL images, see Bring Your Own Windows Desktop Licenses.

Arguments

  • ec2_image_id: The identifier of the EC2 image.
  • image_description: The description of the WorkSpace image.
  • image_name: The name of the WorkSpace image.
  • ingestion_process: 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 or WorkSpaces Streaming Protocol (WSP). To use WSP, specify a value that ends in WSP. To use PCoIP, specify a value that does not end in _WSP. For non-GPU-enabled bundles (bundles other than Graphics or GraphicsPro), specify BYOLREGULAR or BYOLREGULARWSP, depending on the protocol.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "Applications": If specified, the version of Microsoft Office to subscribe to. Valid only for Windows 10 BYOL images. For more information about subscribing to Office for BYOL images, see Bring Your Own Windows Desktop Licenses. Although this parameter is an array, only one item is allowed at this time.
  • "Tags": The tags. Each WorkSpaces resource can have a maximum of 50 tags.
source
Main.Workspaces.list_available_management_cidr_rangesMethod
list_available_management_cidr_ranges(management_cidr_range_constraint)
list_available_management_cidr_ranges(management_cidr_range_constraint, params::Dict{String,<:Any})

Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL). This operation can be run only by AWS accounts that are enabled for BYOL. If your account isn't enabled for BYOL, you'll receive an AccessDeniedException error. The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.

Arguments

  • management_cidr_range_constraint: The IP address range to search. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block).

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "MaxResults": The maximum number of items to return.
  • "NextToken": If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
source
Main.Workspaces.migrate_workspaceMethod
migrate_workspace(bundle_id, source_workspace_id)
migrate_workspace(bundle_id, source_workspace_id, params::Dict{String,<:Any})

Migrates a WorkSpace from one operating system or bundle type to another, while retaining the data on the user volume. The migration process recreates the WorkSpace by using a new root volume from the target bundle image and the user volume from the last available snapshot of the original WorkSpace. During migration, the original D:Users%USERNAME% user profile folder is renamed to D:Users%USERNAME%MMddyyTHHmmss%.NotMigrated. A new D:Users%USERNAME% folder is generated by the new OS. Certain files in the old user profile are moved to the new user profile. For available migration scenarios, details about what happens during migration, and best practices, see Migrate a WorkSpace.

Arguments

  • bundle_id: The identifier of the target bundle type to migrate the WorkSpace to.
  • source_workspace_id: The identifier of the WorkSpace to migrate from.
source
Main.Workspaces.modify_accountMethod
modify_account()
modify_account(params::Dict{String,<:Any})

Modifies the configuration of Bring Your Own License (BYOL) for the specified account.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "DedicatedTenancyManagementCidrRange": The IP address range, specified as an IPv4 CIDR block, for the management network interface. Specify an IP address range that is compatible with your network and in CIDR notation (that is, specify the range as an IPv4 CIDR block). The CIDR block size must be /16 (for example, 203.0.113.25/16). It must also be specified as available by the ListAvailableManagementCidrRanges operation.
  • "DedicatedTenancySupport": The status of BYOL.
source
Main.Workspaces.modify_client_propertiesMethod
modify_client_properties(client_properties, resource_id)
modify_client_properties(client_properties, resource_id, params::Dict{String,<:Any})

Modifies the properties of the specified Amazon WorkSpaces clients.

Arguments

  • client_properties: Information about the Amazon WorkSpaces client.
  • resource_id: The resource identifiers, in the form of directory IDs.
source
Main.Workspaces.modify_selfservice_permissionsMethod
modify_selfservice_permissions(resource_id, selfservice_permissions)
modify_selfservice_permissions(resource_id, selfservice_permissions, params::Dict{String,<:Any})

Modifies the self-service WorkSpace management capabilities for your users. For more information, see Enable Self-Service WorkSpace Management Capabilities for Your Users.

Arguments

  • resource_id: The identifier of the directory.
  • selfservice_permissions: The permissions to enable or disable self-service capabilities.
source
Main.Workspaces.modify_workspace_access_propertiesMethod
modify_workspace_access_properties(resource_id, workspace_access_properties)
modify_workspace_access_properties(resource_id, workspace_access_properties, params::Dict{String,<:Any})

Specifies which devices and operating systems users can use to access their WorkSpaces. For more information, see Control Device Access.

Arguments

  • resource_id: The identifier of the directory.
  • workspace_access_properties: The device types and operating systems to enable or disable for access.
source
Main.Workspaces.modify_workspace_creation_propertiesMethod
modify_workspace_creation_properties(resource_id, workspace_creation_properties)
modify_workspace_creation_properties(resource_id, workspace_creation_properties, params::Dict{String,<:Any})

Modify the default properties used to create WorkSpaces.

Arguments

  • resource_id: The identifier of the directory.
  • workspace_creation_properties: The default properties for creating WorkSpaces.
source
Main.Workspaces.modify_workspace_propertiesMethod
modify_workspace_properties(workspace_id, workspace_properties)
modify_workspace_properties(workspace_id, workspace_properties, params::Dict{String,<:Any})

Modifies the specified WorkSpace properties. For important information about how to modify the size of the root and user volumes, see Modify a WorkSpace.

Arguments

  • workspace_id: The identifier of the WorkSpace.
  • workspace_properties: The properties of the WorkSpace.
source
Main.Workspaces.modify_workspace_stateMethod
modify_workspace_state(workspace_id, workspace_state)
modify_workspace_state(workspace_id, workspace_state, params::Dict{String,<:Any})

Sets the state of the specified WorkSpace. To maintain a WorkSpace without being interrupted, set the WorkSpace state to ADMINMAINTENANCE. WorkSpaces in this state do not respond to requests to reboot, stop, start, rebuild, or restore. An AutoStop WorkSpace in this state is not stopped. Users cannot log into a WorkSpace in the ADMINMAINTENANCE state.

Arguments

  • workspace_id: The identifier of the WorkSpace.
  • workspace_state: The WorkSpace state.
source
Main.Workspaces.reboot_workspacesMethod
reboot_workspaces(reboot_workspace_requests)
reboot_workspaces(reboot_workspace_requests, params::Dict{String,<:Any})

Reboots the specified WorkSpaces. You cannot reboot a WorkSpace unless its state is AVAILABLE or UNHEALTHY. This operation is asynchronous and returns before the WorkSpaces have rebooted.

Arguments

  • reboot_workspace_requests: The WorkSpaces to reboot. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.rebuild_workspacesMethod
rebuild_workspaces(rebuild_workspace_requests)
rebuild_workspaces(rebuild_workspace_requests, params::Dict{String,<:Any})

Rebuilds the specified WorkSpace. You cannot rebuild a WorkSpace unless its state is AVAILABLE, ERROR, UNHEALTHY, STOPPED, or REBOOTING. Rebuilding a WorkSpace is a potentially destructive action that can result in the loss of data. For more information, see Rebuild a WorkSpace. This operation is asynchronous and returns before the WorkSpaces have been completely rebuilt.

Arguments

  • rebuild_workspace_requests: The WorkSpace to rebuild. You can specify a single WorkSpace.
source
Main.Workspaces.register_workspace_directoryMethod
register_workspace_directory(directory_id, enable_work_docs)
register_workspace_directory(directory_id, enable_work_docs, params::Dict{String,<:Any})

Registers the specified directory. This operation is asynchronous and returns before the WorkSpace directory is registered. If this is the first time you are registering a directory, you will need to create the workspacesDefaultRole role before you can register a directory. For more information, see Creating the workspacesDefaultRole Role.

Arguments

  • directory_id: The identifier of the directory. You cannot register a directory if it does not have a status of Active. If the directory does not have a status of Active, you will receive an InvalidResourceStateException error. If you have already registered the maximum number of directories that you can register with Amazon WorkSpaces, you will receive a ResourceLimitExceededException error. Deregister directories that you are not using for WorkSpaces, and try again.
  • enable_work_docs: Indicates whether Amazon WorkDocs is enabled or disabled. If you have enabled this parameter and WorkDocs is not available in the Region, you will receive an OperationNotSupportedException error. Set EnableWorkDocs to disabled, and try again.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "EnableSelfService": Indicates whether self-service capabilities are enabled or disabled.
  • "SubnetIds": The identifiers of the subnets for your virtual private cloud (VPC). Make sure that the subnets are in supported Availability Zones. The subnets must also be in separate Availability Zones. If these conditions are not met, you will receive an OperationNotSupportedException error.
  • "Tags": The tags associated with the directory.
  • "Tenancy": Indicates whether your WorkSpace directory is dedicated or shared. To use Bring Your Own License (BYOL) images, this value must be set to DEDICATED and your AWS account must be enabled for BYOL. If your account has not been enabled for BYOL, you will receive an InvalidParameterValuesException error. For more information about BYOL images, see Bring Your Own Windows Desktop Images.
source
Main.Workspaces.restore_workspaceMethod
restore_workspace(workspace_id)
restore_workspace(workspace_id, params::Dict{String,<:Any})

Restores the specified WorkSpace to its last known healthy state. You cannot restore a WorkSpace unless its state is AVAILABLE, ERROR, UNHEALTHY, or STOPPED. Restoring a WorkSpace is a potentially destructive action that can result in the loss of data. For more information, see Restore a WorkSpace. This operation is asynchronous and returns before the WorkSpace is completely restored.

Arguments

  • workspace_id: The identifier of the WorkSpace.
source
Main.Workspaces.revoke_ip_rulesMethod
revoke_ip_rules(group_id, user_rules)
revoke_ip_rules(group_id, user_rules, params::Dict{String,<:Any})

Removes one or more rules from the specified IP access control group.

Arguments

  • group_id: The identifier of the group.
  • user_rules: The rules to remove from the group.
source
Main.Workspaces.start_workspacesMethod
start_workspaces(start_workspace_requests)
start_workspaces(start_workspace_requests, params::Dict{String,<:Any})

Starts the specified WorkSpaces. You cannot start a WorkSpace unless it has a running mode of AutoStop and a state of STOPPED.

Arguments

  • start_workspace_requests: The WorkSpaces to start. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.stop_workspacesMethod
stop_workspaces(stop_workspace_requests)
stop_workspaces(stop_workspace_requests, params::Dict{String,<:Any})

Stops the specified WorkSpaces. You cannot stop a WorkSpace unless it has a running mode of AutoStop and a state of AVAILABLE, IMPAIRED, UNHEALTHY, or ERROR.

Arguments

  • stop_workspace_requests: The WorkSpaces to stop. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.terminate_workspacesMethod
terminate_workspaces(terminate_workspace_requests)
terminate_workspaces(terminate_workspace_requests, params::Dict{String,<:Any})

Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated. Simple AD and AD Connector are made available to you free of charge to use with WorkSpaces. If there are no WorkSpaces being used with your Simple AD or AD Connector directory for 30 consecutive days, this directory will be automatically deregistered for use with Amazon WorkSpaces, and you will be charged for this directory as per the AWS Directory Services pricing terms. To delete empty directories, see Delete the Directory for Your WorkSpaces. If you delete your Simple AD or AD Connector directory, you can always create a new one when you want to start using WorkSpaces again.

Arguments

  • terminate_workspace_requests: The WorkSpaces to terminate. You can specify up to 25 WorkSpaces.
source
Main.Workspaces.update_connection_alias_permissionMethod
update_connection_alias_permission(alias_id, connection_alias_permission)
update_connection_alias_permission(alias_id, connection_alias_permission, params::Dict{String,<:Any})

Shares or unshares a connection alias with one account by specifying whether that account has permission to associate the connection alias with a directory. If the association permission is granted, the connection alias is shared with that account. If the association permission is revoked, the connection alias is unshared with the account. For more information, see Cross-Region Redirection for Amazon WorkSpaces. Before performing this operation, call DescribeConnectionAliases to make sure that the current state of the connection alias is CREATED. To delete a connection alias that has been shared, the shared account must first disassociate the connection alias from any directories it has been associated with. Then you must unshare the connection alias from the account it has been shared with. You can delete a connection alias only after it is no longer shared with any accounts or associated with any directories.

Arguments

  • alias_id: The identifier of the connection alias that you want to update permissions for.
  • connection_alias_permission: Indicates whether to share or unshare the connection alias with the specified AWS account.
source
Main.Workspaces.update_rules_of_ip_groupMethod
update_rules_of_ip_group(group_id, user_rules)
update_rules_of_ip_group(group_id, user_rules, params::Dict{String,<:Any})

Replaces the current rules of the specified IP access control group with the specified rules.

Arguments

  • group_id: The identifier of the group.
  • user_rules: One or more rules.
source
Main.Workspaces.update_workspace_bundleMethod
update_workspace_bundle()
update_workspace_bundle(params::Dict{String,<:Any})

Updates a WorkSpace bundle with a new image. For more information about updating WorkSpace bundles, see Update a Custom WorkSpaces Bundle. Existing WorkSpaces aren't automatically updated when you update the bundle that they're based on. To update existing WorkSpaces that are based on a bundle that you've updated, you must either rebuild the WorkSpaces or delete and recreate them.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "BundleId": The identifier of the bundle.
  • "ImageId": The identifier of the image.
source
Main.Workspaces.update_workspace_image_permissionMethod
update_workspace_image_permission(allow_copy_image, image_id, shared_account_id)
update_workspace_image_permission(allow_copy_image, image_id, shared_account_id, params::Dict{String,<:Any})

Shares or unshares an image with one account in the same AWS Region by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. After an image has been shared, the recipient account can copy the image to other AWS Regions as needed. In the China (Ningxia) Region, you can copy images only within the same Region. In the AWS GovCloud (US-West) Region, to copy images to and from other AWS Regions, contact AWS Support. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.

Arguments

  • allow_copy_image: The permission to copy the image. This permission can be revoked only after an image has been shared.
  • image_id: The identifier of the image.
  • shared_account_id: The identifier of the AWS account to share or unshare the image with. Before sharing the image, confirm that you are sharing to the correct AWS account ID.
source