{ "version":"2.0", "metadata":{ "apiVersion":"2015-04-08", "endpointPrefix":"workspaces", "jsonVersion":"1.1", "serviceFullName":"Amazon WorkSpaces", "signatureVersion":"v4", "targetPrefix":"WorkspacesService", "protocol":"json" }, "documentation":"Amazon WorkSpaces Service

This is the Amazon WorkSpaces API Reference. This guide provides detailed information about Amazon WorkSpaces operations, data types, parameters, and errors.

", "operations":{ "CreateWorkspaces":{ "name":"CreateWorkspaces", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"CreateWorkspacesRequest", "documentation":"

Contains the inputs for the CreateWorkspaces operation.

" }, "output":{ "shape":"CreateWorkspacesResult", "documentation":"

Contains the result of the CreateWorkspaces operation.

" }, "errors":[ { "shape":"ResourceLimitExceededException", "exception":true, "documentation":"

Your resource limits have been exceeded.

" } ], "documentation":"

Creates one or more WorkSpaces.

This operation is asynchronous and returns before the WorkSpaces are created.

" }, "DescribeWorkspaceBundles":{ "name":"DescribeWorkspaceBundles", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DescribeWorkspaceBundlesRequest", "documentation":"

Contains the inputs for the DescribeWorkspaceBundles operation.

" }, "output":{ "shape":"DescribeWorkspaceBundlesResult", "documentation":"

Contains the results of the DescribeWorkspaceBundles operation.

" }, "errors":[ { "shape":"InvalidParameterValuesException", "exception":true, "documentation":"

One or more parameter values are not valid.

" } ], "documentation":"

Obtains information about the WorkSpace bundles that are available to your account in the specified region.

You can filter the results with either the BundleIds parameter, or the Owner parameter, but not both.

This operation supports pagination with the use of the NextToken request and response parameters. If more results are available, the NextToken response member contains a token that you pass in the next call to this operation to retrieve the next set of items.

" }, "DescribeWorkspaceDirectories":{ "name":"DescribeWorkspaceDirectories", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DescribeWorkspaceDirectoriesRequest", "documentation":"

Contains the inputs for the DescribeWorkspaceDirectories operation.

" }, "output":{ "shape":"DescribeWorkspaceDirectoriesResult", "documentation":"

Contains the results of the DescribeWorkspaceDirectories operation.

" }, "errors":[ { "shape":"InvalidParameterValuesException", "exception":true, "documentation":"

One or more parameter values are not valid.

" } ], "documentation":"

Retrieves information about the AWS Directory Service directories in the region that are registered with Amazon WorkSpaces and are available to your account.

This operation supports pagination with the use of the NextToken request and response parameters. If more results are available, the NextToken response member contains a token that you pass in the next call to this operation to retrieve the next set of items.

" }, "DescribeWorkspaces":{ "name":"DescribeWorkspaces", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"DescribeWorkspacesRequest", "documentation":"

Contains the inputs for the DescribeWorkspaces operation.

" }, "output":{ "shape":"DescribeWorkspacesResult", "documentation":"

Contains the results for the DescribeWorkspaces operation.

" }, "errors":[ { "shape":"InvalidParameterValuesException", "exception":true, "documentation":"

One or more parameter values are not valid.

" }, { "shape":"ResourceUnavailableException", "exception":true, "documentation":"

The specified resource is not available.

" } ], "documentation":"

Obtains information about the specified WorkSpaces.

Only one of the filter parameters, such as BundleId, DirectoryId, or WorkspaceIds, can be specified at a time.

This operation supports pagination with the use of the NextToken request and response parameters. If more results are available, the NextToken response member contains a token that you pass in the next call to this operation to retrieve the next set of items.

" }, "RebootWorkspaces":{ "name":"RebootWorkspaces", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"RebootWorkspacesRequest", "documentation":"

Contains the inputs for the RebootWorkspaces operation.

" }, "output":{ "shape":"RebootWorkspacesResult", "documentation":"

Contains the results of the RebootWorkspaces operation.

" }, "documentation":"

Reboots the specified WorkSpaces.

To be able to reboot a WorkSpace, the WorkSpace must have a State of AVAILABLE, IMPAIRED, or INOPERABLE.

This operation is asynchronous and will return before the WorkSpaces have rebooted.

" }, "RebuildWorkspaces":{ "name":"RebuildWorkspaces", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"RebuildWorkspacesRequest", "documentation":"

Contains the inputs for the RebuildWorkspaces operation.

" }, "output":{ "shape":"RebuildWorkspacesResult", "documentation":"

Contains the results of the RebuildWorkspaces operation.

" }, "documentation":"

Rebuilds the specified WorkSpaces.

Rebuilding a WorkSpace is a potentially destructive action that can result in the loss of data. Rebuilding a WorkSpace causes the following to occur:

To be able to rebuild a WorkSpace, the WorkSpace must have a State of AVAILABLE or ERROR.

This operation is asynchronous and will return before the WorkSpaces have been completely rebuilt.

" }, "TerminateWorkspaces":{ "name":"TerminateWorkspaces", "http":{ "method":"POST", "requestUri":"/" }, "input":{ "shape":"TerminateWorkspacesRequest", "documentation":"

Contains the inputs for the TerminateWorkspaces operation.

" }, "output":{ "shape":"TerminateWorkspacesResult", "documentation":"

Contains the results of the TerminateWorkspaces operation.

" }, "documentation":"

Terminates the specified WorkSpaces.

Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is not maintained and will be destroyed. If you need to archive any user data, contact Amazon Web Services before terminating the WorkSpace.

You can terminate a WorkSpace that is in any state except SUSPENDED.

This operation is asynchronous and will return before the WorkSpaces have been completely terminated.

" } }, "shapes":{ "ARN":{ "type":"string", "pattern":"^arn:aws:[A-Za-z0-9][A-za-z0-9_/.-]{0,62}:[A-za-z0-9_/.-]{0,63}:[A-za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-za-z0-9_/.-]{0,127}$" }, "Alias":{"type":"string"}, "BooleanObject":{"type":"boolean"}, "BundleId":{ "type":"string", "pattern":"^wsb-[0-9a-z]{8,63}$" }, "BundleIdList":{ "type":"list", "member":{"shape":"BundleId"}, "min":1, "max":25 }, "BundleList":{ "type":"list", "member":{"shape":"WorkspaceBundle"} }, "BundleOwner":{"type":"string"}, "Compute":{ "type":"string", "enum":[ "VALUE", "STANDARD", "PERFORMANCE" ] }, "ComputeType":{ "type":"structure", "members":{ "Name":{ "shape":"Compute", "documentation":"

The name of the compute type for the bundle.

" } }, "documentation":"

Contains information about the compute type of a WorkSpace bundle.

" }, "ComputerName":{"type":"string"}, "CreateWorkspacesRequest":{ "type":"structure", "required":["Workspaces"], "members":{ "Workspaces":{ "shape":"WorkspaceRequestList", "documentation":"

An array of structures that specify the WorkSpaces to create.

" } }, "documentation":"

Contains the inputs for the CreateWorkspaces operation.

" }, "CreateWorkspacesResult":{ "type":"structure", "members":{ "FailedRequests":{ "shape":"FailedCreateWorkspaceRequests", "documentation":"

An array of structures that represent the WorkSpaces that could not be created.

" }, "PendingRequests":{ "shape":"WorkspaceList", "documentation":"

An array of structures that represent the WorkSpaces that were created.

Because this operation is asynchronous, the identifier in WorkspaceId is not immediately available. If you immediately call DescribeWorkspaces with this identifier, no information will be returned.

" } }, "documentation":"

Contains the result of the CreateWorkspaces operation.

" }, "DefaultOu":{"type":"string"}, "DefaultWorkspaceCreationProperties":{ "type":"structure", "members":{ "EnableWorkDocs":{ "shape":"BooleanObject", "documentation":"

Specifies if the directory is enabled for Amazon WorkDocs.

" }, "EnableInternetAccess":{ "shape":"BooleanObject", "documentation":"

A public IP address will be attached to all WorkSpaces that are created or rebuilt.

" }, "DefaultOu":{ "shape":"DefaultOu", "documentation":"

The organizational unit (OU) in the directory that the WorkSpace machine accounts are placed in.

" }, "CustomSecurityGroupId":{ "shape":"SecurityGroupId", "documentation":"

The identifier of any custom security groups that are applied to the WorkSpaces when they are created.

" }, "UserEnabledAsLocalAdministrator":{ "shape":"BooleanObject", "documentation":"

The WorkSpace user is an administrator on the WorkSpace.

" } }, "documentation":"

Contains default WorkSpace creation information.

" }, "DescribeWorkspaceBundlesRequest":{ "type":"structure", "members":{ "BundleIds":{ "shape":"BundleIdList", "documentation":"

An array of strings that contains the identifiers of the bundles to retrieve. This parameter cannot be combined with any other filter parameter.

" }, "Owner":{ "shape":"BundleOwner", "documentation":"

The owner of the bundles to retrieve. This parameter cannot be combined with any other filter parameter.

This contains one of the following values:

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

The NextToken value from a previous call to this operation. Pass null if this is the first call.

" } }, "documentation":"

Contains the inputs for the DescribeWorkspaceBundles operation.

" }, "DescribeWorkspaceBundlesResult":{ "type":"structure", "members":{ "Bundles":{ "shape":"BundleList", "documentation":"

An array of structures that contain information about the bundles.

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.

" } }, "documentation":"

Contains the results of the DescribeWorkspaceBundles operation.

" }, "DescribeWorkspaceDirectoriesRequest":{ "type":"structure", "members":{ "DirectoryIds":{ "shape":"DirectoryIdList", "documentation":"

An array of strings that contains the directory identifiers to retrieve information for. If this member is null, all directories are retrieved.

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

The NextToken value from a previous call to this operation. Pass null if this is the first call.

" } }, "documentation":"

Contains the inputs for the DescribeWorkspaceDirectories operation.

" }, "DescribeWorkspaceDirectoriesResult":{ "type":"structure", "members":{ "Directories":{ "shape":"DirectoryList", "documentation":"

An array of structures that contain information about the directories.

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.

" } }, "documentation":"

Contains the results of the DescribeWorkspaceDirectories operation.

" }, "DescribeWorkspacesRequest":{ "type":"structure", "members":{ "WorkspaceIds":{ "shape":"WorkspaceIdList", "documentation":"

An array of strings that contain the identifiers of the WorkSpaces for which to retrieve information. This parameter cannot be combined with any other filter parameter.

Because the CreateWorkspaces operation is asynchronous, the identifier returned by CreateWorkspaces is not immediately available. If you immediately call DescribeWorkspaces with this identifier, no information will be returned.

" }, "DirectoryId":{ "shape":"DirectoryId", "documentation":"

Specifies the directory identifier to which to limit the WorkSpaces. Optionally, you can specify a specific directory user with the UserName parameter. This parameter cannot be combined with any other filter parameter.

" }, "UserName":{ "shape":"UserName", "documentation":"

Used with the DirectoryId parameter to specify the directory user for which to obtain the WorkSpace.

" }, "BundleId":{ "shape":"BundleId", "documentation":"

The identifier of a bundle to obtain the WorkSpaces for. All WorkSpaces that are created from this bundle will be retrieved. This parameter cannot be combined with any other filter parameter.

" }, "Limit":{ "shape":"Limit", "documentation":"

The maximum number of items to return.

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

The NextToken value from a previous call to this operation. Pass null if this is the first call.

" } }, "documentation":"

Contains the inputs for the DescribeWorkspaces operation.

" }, "DescribeWorkspacesResult":{ "type":"structure", "members":{ "Workspaces":{ "shape":"WorkspaceList", "documentation":"

An array of structures that contain the information about the WorkSpaces.

Because the CreateWorkspaces operation is asynchronous, some of this information may be incomplete for a newly-created WorkSpace.

" }, "NextToken":{ "shape":"PaginationToken", "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to this operation to retrieve the next set of items. This token is valid for one day and must be used within that timeframe.

" } }, "documentation":"

Contains the results for the DescribeWorkspaces operation.

" }, "Description":{"type":"string"}, "DirectoryId":{ "type":"string", "pattern":"^d-[0-9a-f]{8,63}$" }, "DirectoryIdList":{ "type":"list", "member":{"shape":"DirectoryId"}, "min":1, "max":25 }, "DirectoryList":{ "type":"list", "member":{"shape":"WorkspaceDirectory"} }, "DirectoryName":{"type":"string"}, "DnsIpAddresses":{ "type":"list", "member":{"shape":"IpAddress"} }, "ErrorType":{"type":"string"}, "ExceptionMessage":{"type":"string"}, "FailedCreateWorkspaceRequest":{ "type":"structure", "members":{ "WorkspaceRequest":{ "shape":"WorkspaceRequest", "documentation":"

A WorkspaceRequest object that contains the information about the WorkSpace that could not be created.

" }, "ErrorCode":{ "shape":"ErrorType", "documentation":"

The error code.

" }, "ErrorMessage":{ "shape":"Description", "documentation":"

The textual error message.

" } }, "documentation":"

Contains information about a WorkSpace that could not be created.

" }, "FailedCreateWorkspaceRequests":{ "type":"list", "member":{"shape":"FailedCreateWorkspaceRequest"} }, "FailedRebootWorkspaceRequests":{ "type":"list", "member":{"shape":"FailedWorkspaceChangeRequest"} }, "FailedRebuildWorkspaceRequests":{ "type":"list", "member":{"shape":"FailedWorkspaceChangeRequest"} }, "FailedTerminateWorkspaceRequests":{ "type":"list", "member":{"shape":"FailedWorkspaceChangeRequest"} }, "FailedWorkspaceChangeRequest":{ "type":"structure", "members":{ "WorkspaceId":{ "shape":"WorkspaceId", "documentation":"

The identifier of the WorkSpace.

" }, "ErrorCode":{ "shape":"ErrorType", "documentation":"

The error code.

" }, "ErrorMessage":{ "shape":"Description", "documentation":"

The textual error message.

" } }, "documentation":"

Contains information about a WorkSpace that could not be rebooted (RebootWorkspaces), rebuilt (RebuildWorkspaces), or terminated (TerminateWorkspaces).

" }, "InvalidParameterValuesException":{ "type":"structure", "members":{ "message":{ "shape":"ExceptionMessage", "documentation":"

The exception error message.

" } }, "exception":true, "documentation":"

One or more parameter values are not valid.

" }, "IpAddress":{"type":"string"}, "Limit":{ "type":"integer", "min":1, "max":25 }, "NonEmptyString":{ "type":"string", "min":1 }, "PaginationToken":{ "type":"string", "min":1, "max":63 }, "RebootRequest":{ "type":"structure", "required":["WorkspaceId"], "members":{ "WorkspaceId":{ "shape":"WorkspaceId", "documentation":"

The identifier of the WorkSpace to reboot.

" } }, "documentation":"

Contains information used with the RebootWorkspaces operation to reboot a WorkSpace.

" }, "RebootWorkspaceRequests":{ "type":"list", "member":{"shape":"RebootRequest"}, "min":1, "max":25 }, "RebootWorkspacesRequest":{ "type":"structure", "required":["RebootWorkspaceRequests"], "members":{ "RebootWorkspaceRequests":{ "shape":"RebootWorkspaceRequests", "documentation":"

An array of structures that specify the WorkSpaces to reboot.

" } }, "documentation":"

Contains the inputs for the RebootWorkspaces operation.

" }, "RebootWorkspacesResult":{ "type":"structure", "members":{ "FailedRequests":{ "shape":"FailedRebootWorkspaceRequests", "documentation":"

An array of structures that represent any WorkSpaces that could not be rebooted.

" } }, "documentation":"

Contains the results of the RebootWorkspaces operation.

" }, "RebuildRequest":{ "type":"structure", "required":["WorkspaceId"], "members":{ "WorkspaceId":{ "shape":"WorkspaceId", "documentation":"

The identifier of the WorkSpace to rebuild.

" } }, "documentation":"

Contains information used with the RebuildWorkspaces operation to rebuild a WorkSpace.

" }, "RebuildWorkspaceRequests":{ "type":"list", "member":{"shape":"RebuildRequest"}, "min":1, "max":1 }, "RebuildWorkspacesRequest":{ "type":"structure", "required":["RebuildWorkspaceRequests"], "members":{ "RebuildWorkspaceRequests":{ "shape":"RebuildWorkspaceRequests", "documentation":"

An array of structures that specify the WorkSpaces to rebuild.

" } }, "documentation":"

Contains the inputs for the RebuildWorkspaces operation.

" }, "RebuildWorkspacesResult":{ "type":"structure", "members":{ "FailedRequests":{ "shape":"FailedRebuildWorkspaceRequests", "documentation":"

An array of structures that represent any WorkSpaces that could not be rebuilt.

" } }, "documentation":"

Contains the results of the RebuildWorkspaces operation.

" }, "RegistrationCode":{ "type":"string", "min":1, "max":20 }, "ResourceLimitExceededException":{ "type":"structure", "members":{ "message":{ "shape":"ExceptionMessage", "documentation":"

The exception error message.

" } }, "exception":true, "documentation":"

Your resource limits have been exceeded.

" }, "ResourceUnavailableException":{ "type":"structure", "members":{ "message":{ "shape":"ExceptionMessage", "documentation":"

The exception error message.

" }, "ResourceId":{ "shape":"NonEmptyString", "documentation":"

The identifier of the resource that is not available.

" } }, "exception":true, "documentation":"

The specified resource is not available.

" }, "SecurityGroupId":{ "type":"string", "pattern":"^(sg-[0-9a-f]{8})$" }, "SubnetId":{ "type":"string", "pattern":"^(subnet-[0-9a-f]{8})$" }, "SubnetIds":{ "type":"list", "member":{"shape":"SubnetId"} }, "TerminateRequest":{ "type":"structure", "required":["WorkspaceId"], "members":{ "WorkspaceId":{ "shape":"WorkspaceId", "documentation":"

The identifier of the WorkSpace to terminate.

" } }, "documentation":"

Contains information used with the TerminateWorkspaces operation to terminate a WorkSpace.

" }, "TerminateWorkspaceRequests":{ "type":"list", "member":{"shape":"TerminateRequest"}, "min":1, "max":25 }, "TerminateWorkspacesRequest":{ "type":"structure", "required":["TerminateWorkspaceRequests"], "members":{ "TerminateWorkspaceRequests":{ "shape":"TerminateWorkspaceRequests", "documentation":"

An array of structures that specify the WorkSpaces to terminate.

" } }, "documentation":"

Contains the inputs for the TerminateWorkspaces operation.

" }, "TerminateWorkspacesResult":{ "type":"structure", "members":{ "FailedRequests":{ "shape":"FailedTerminateWorkspaceRequests", "documentation":"

An array of structures that represent any WorkSpaces that could not be terminated.

" } }, "documentation":"

Contains the results of the TerminateWorkspaces operation.

" }, "UserName":{ "type":"string", "min":1, "max":63 }, "UserStorage":{ "type":"structure", "members":{ "Capacity":{ "shape":"NonEmptyString", "documentation":"

The amount of user storage for the bundle.

" } }, "documentation":"

Contains information about the user storage for a WorkSpace bundle.

" }, "VolumeEncryptionKey":{"type":"string"}, "Workspace":{ "type":"structure", "members":{ "WorkspaceId":{ "shape":"WorkspaceId", "documentation":"

The identifier of the WorkSpace.

" }, "DirectoryId":{ "shape":"DirectoryId", "documentation":"

The identifier of the AWS Directory Service directory that the WorkSpace belongs to.

" }, "UserName":{ "shape":"UserName", "documentation":"

The user that the WorkSpace is assigned to.

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

The IP address of the WorkSpace.

" }, "State":{ "shape":"WorkspaceState", "documentation":"

The operational state of the WorkSpace.

" }, "BundleId":{ "shape":"BundleId", "documentation":"

The identifier of the bundle that the WorkSpace was created from.

" }, "SubnetId":{ "shape":"SubnetId", "documentation":"

The identifier of the subnet that the WorkSpace is in.

" }, "ErrorMessage":{ "shape":"Description", "documentation":"

If the WorkSpace could not be created, this contains a textual error message that describes the failure.

" }, "ErrorCode":{ "shape":"WorkspaceErrorCode", "documentation":"

If the WorkSpace could not be created, this contains the error code.

" }, "ComputerName":{ "shape":"ComputerName", "documentation":"

The name of the WorkSpace as seen by the operating system.

" }, "VolumeEncryptionKey":{ "shape":"VolumeEncryptionKey", "documentation":"

The KMS key used to encrypt data stored on your WorkSpace.

" }, "UserVolumeEncryptionEnabled":{ "shape":"BooleanObject", "documentation":"

Specifies whether the data stored on the user volume, or D: drive, is encrypted.

" }, "RootVolumeEncryptionEnabled":{ "shape":"BooleanObject", "documentation":"

Specifies whether the data stored on the root volume, or C: drive, is encrypted.

" } }, "documentation":"

Contains information about a WorkSpace.

" }, "WorkspaceBundle":{ "type":"structure", "members":{ "BundleId":{ "shape":"BundleId", "documentation":"

The bundle identifier.

" }, "Name":{ "shape":"NonEmptyString", "documentation":"

The name of the bundle.

" }, "Owner":{ "shape":"BundleOwner", "documentation":"

The owner of the bundle. This contains the owner's account identifier, or AMAZON if the bundle is provided by AWS.

" }, "Description":{ "shape":"Description", "documentation":"

The bundle description.

" }, "UserStorage":{ "shape":"UserStorage", "documentation":"

A UserStorage object that specifies the amount of user storage that the bundle contains.

" }, "ComputeType":{ "shape":"ComputeType", "documentation":"

A ComputeType object that specifies the compute type for the bundle.

" } }, "documentation":"

Contains information about a WorkSpace bundle.

" }, "WorkspaceDirectory":{ "type":"structure", "members":{ "DirectoryId":{ "shape":"DirectoryId", "documentation":"

The directory identifier.

" }, "Alias":{ "shape":"Alias", "documentation":"

The directory alias.

" }, "DirectoryName":{ "shape":"DirectoryName", "documentation":"

The name of the directory.

" }, "RegistrationCode":{ "shape":"RegistrationCode", "documentation":"

The registration code for the directory. This is the code that users enter in their Amazon WorkSpaces client application to connect to the directory.

" }, "SubnetIds":{ "shape":"SubnetIds", "documentation":"

An array of strings that contains the identifiers of the subnets used with the directory.

" }, "DnsIpAddresses":{ "shape":"DnsIpAddresses", "documentation":"

An array of strings that contains the IP addresses of the DNS servers for the directory.

" }, "CustomerUserName":{ "shape":"UserName", "documentation":"

The user name for the service account.

" }, "IamRoleId":{ "shape":"ARN", "documentation":"

The identifier of the IAM role. This is the role that allows Amazon WorkSpaces to make calls to other services, such as Amazon EC2, on your behalf.

" }, "DirectoryType":{ "shape":"WorkspaceDirectoryType", "documentation":"

The directory type.

" }, "WorkspaceSecurityGroupId":{ "shape":"SecurityGroupId", "documentation":"

The identifier of the security group that is assigned to new WorkSpaces.

" }, "State":{ "shape":"WorkspaceDirectoryState", "documentation":"

The state of the directory's registration with Amazon WorkSpaces

" }, "WorkspaceCreationProperties":{ "shape":"DefaultWorkspaceCreationProperties", "documentation":"

A structure that specifies the default creation properties for all WorkSpaces in the directory.

" } }, "documentation":"

Contains information about an AWS Directory Service directory for use with Amazon WorkSpaces.

" }, "WorkspaceDirectoryState":{ "type":"string", "enum":[ "REGISTERING", "REGISTERED", "DEREGISTERING", "DEREGISTERED", "ERROR" ] }, "WorkspaceDirectoryType":{ "type":"string", "enum":[ "SIMPLE_AD", "AD_CONNECTOR" ] }, "WorkspaceErrorCode":{"type":"string"}, "WorkspaceId":{ "type":"string", "pattern":"^ws-[0-9a-z]{8,63}$" }, "WorkspaceIdList":{ "type":"list", "member":{"shape":"WorkspaceId"}, "min":1, "max":25 }, "WorkspaceList":{ "type":"list", "member":{"shape":"Workspace"} }, "WorkspaceRequest":{ "type":"structure", "required":[ "DirectoryId", "UserName", "BundleId" ], "members":{ "DirectoryId":{ "shape":"DirectoryId", "documentation":"

The identifier of the AWS Directory Service directory to create the WorkSpace in. You can use the DescribeWorkspaceDirectories operation to obtain a list of the directories that are available.

" }, "UserName":{ "shape":"UserName", "documentation":"

The username that the WorkSpace is assigned to. This username must exist in the AWS Directory Service directory specified by the DirectoryId member.

" }, "BundleId":{ "shape":"BundleId", "documentation":"

The identifier of the bundle to create the WorkSpace from. You can use the DescribeWorkspaceBundles operation to obtain a list of the bundles that are available.

" }, "VolumeEncryptionKey":{ "shape":"VolumeEncryptionKey", "documentation":"

The KMS key used to encrypt data stored on your WorkSpace.

" }, "UserVolumeEncryptionEnabled":{ "shape":"BooleanObject", "documentation":"

Specifies whether the data stored on the user volume, or D: drive, is encrypted.

" }, "RootVolumeEncryptionEnabled":{ "shape":"BooleanObject", "documentation":"

Specifies whether the data stored on the root volume, or C: drive, is encrypted.

" } }, "documentation":"

Contains information about a WorkSpace creation request.

" }, "WorkspaceRequestList":{ "type":"list", "member":{"shape":"WorkspaceRequest"}, "min":1, "max":25 }, "WorkspaceState":{ "type":"string", "enum":[ "PENDING", "AVAILABLE", "IMPAIRED", "UNHEALTHY", "REBOOTING", "REBUILDING", "TERMINATING", "TERMINATED", "SUSPENDED", "ERROR" ] } }, "examples":{ } }