WorkSpaces

Table of Contents

Client

class WorkSpaces.Client

A low-level client representing Amazon WorkSpaces:

import boto3

client = boto3.client('workspaces')

These are the available methods:

associate_ip_groups(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.associate_ip_groups(
    DirectoryId='string',
    GroupIds=[
        'string',
    ]
)
Parameters
  • DirectoryId (string) --

    [REQUIRED]

    The identifier of the directory.

  • GroupIds (list) --

    [REQUIRED]

    The identifiers of one or more IP access control groups.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
authorize_ip_rules(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.authorize_ip_rules(
    GroupId='string',
    UserRules=[
        {
            'ipRule': 'string',
            'ruleDesc': 'string'
        },
    ]
)
Parameters
  • GroupId (string) --

    [REQUIRED]

    The identifier of the group.

  • UserRules (list) --

    [REQUIRED]

    The rules to add to the group.

    • (dict) --

      Describes a rule for an IP access control group.

      • ipRule (string) --

        The IP address range, in CIDR notation.

      • ruleDesc (string) --

        The description.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException
can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
copy_workspace_image(**kwargs)

Copies the specified image from the specified Region to the current Region.

See also: AWS API Documentation

Request Syntax

response = client.copy_workspace_image(
    Name='string',
    Description='string',
    SourceImageId='string',
    SourceRegion='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • Name (string) --

    [REQUIRED]

    The name of the image.

  • Description (string) -- A description of the image.
  • SourceImageId (string) --

    [REQUIRED]

    The identifier of the source image.

  • SourceRegion (string) --

    [REQUIRED]

    The identifier of the source Region.

  • Tags (list) --

    The tags for the image.

    • (dict) --

      Describes a tag.

      • Key (string) -- [REQUIRED]

        The key of the tag.

      • Value (string) --

        The value of the tag.

Return type

dict

Returns

Response Syntax

{
    'ImageId': 'string'
}

Response Structure

  • (dict) --

    • ImageId (string) --

      The identifier of the image.

Exceptions

  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.ResourceAlreadyExistsException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceUnavailableException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
create_ip_group(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.create_ip_group(
    GroupName='string',
    GroupDesc='string',
    UserRules=[
        {
            'ipRule': 'string',
            'ruleDesc': 'string'
        },
    ],
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • GroupName (string) --

    [REQUIRED]

    The name of the group.

  • GroupDesc (string) -- The description of the group.
  • UserRules (list) --

    The rules to add to the group.

    • (dict) --

      Describes a rule for an IP access control group.

      • ipRule (string) --

        The IP address range, in CIDR notation.

      • ruleDesc (string) --

        The description.

  • Tags (list) --

    The tags. Each WorkSpaces resource can have a maximum of 50 tags.

    • (dict) --

      Describes a tag.

      • Key (string) -- [REQUIRED]

        The key of the tag.

      • Value (string) --

        The value of the tag.

Return type

dict

Returns

Response Syntax

{
    'GroupId': 'string'
}

Response Structure

  • (dict) --

    • GroupId (string) --

      The identifier of the group.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.ResourceAlreadyExistsException
  • WorkSpaces.Client.exceptions.ResourceCreationFailedException
  • WorkSpaces.Client.exceptions.AccessDeniedException
create_tags(**kwargs)

Creates the specified tags for the specified WorkSpaces resource.

See also: AWS API Documentation

Request Syntax

response = client.create_tags(
    ResourceId='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, and IP access control groups.

  • Tags (list) --

    [REQUIRED]

    The tags. Each WorkSpaces resource can have a maximum of 50 tags. If you want to add new tags to a set of existing tags, you must submit all of the existing tags along with the new ones.

    • (dict) --

      Describes a tag.

      • Key (string) -- [REQUIRED]

        The key of the tag.

      • Value (string) --

        The value of the tag.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
create_workspaces(**kwargs)

Creates one or more WorkSpaces.

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

See also: AWS API Documentation

Request Syntax

response = client.create_workspaces(
    Workspaces=[
        {
            'DirectoryId': 'string',
            'UserName': 'string',
            'BundleId': 'string',
            'VolumeEncryptionKey': 'string',
            'UserVolumeEncryptionEnabled': True|False,
            'RootVolumeEncryptionEnabled': True|False,
            'WorkspaceProperties': {
                'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
                'RunningModeAutoStopTimeoutInMinutes': 123,
                'RootVolumeSizeGib': 123,
                'UserVolumeSizeGib': 123,
                'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'Tags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ]
        },
    ]
)
Parameters
Workspaces (list) --

[REQUIRED]

The WorkSpaces to create. You can specify up to 25 WorkSpaces.

  • (dict) --

    Describes the information used to create a WorkSpace.

    • DirectoryId (string) -- [REQUIRED]

      The identifier of the AWS Directory Service directory for the WorkSpace. You can use DescribeWorkspaceDirectories to list the available directories.

    • UserName (string) -- [REQUIRED]

      The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.

    • BundleId (string) -- [REQUIRED]

      The identifier of the bundle for the WorkSpace. You can use DescribeWorkspaceBundles to list the available bundles.

    • VolumeEncryptionKey (string) --

      The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

    • UserVolumeEncryptionEnabled (boolean) --

      Indicates whether the data stored on the user volume is encrypted.

    • RootVolumeEncryptionEnabled (boolean) --

      Indicates whether the data stored on the root volume is encrypted.

    • WorkspaceProperties (dict) --

      The WorkSpace properties.

      • RunningMode (string) --

        The running mode. For more information, see Manage the WorkSpace Running Mode .

      • RunningModeAutoStopTimeoutInMinutes (integer) --

        The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

      • RootVolumeSizeGib (integer) --

        The size of the root volume.

      • UserVolumeSizeGib (integer) --

        The size of the user storage.

      • ComputeTypeName (string) --

        The compute type. For more information, see Amazon WorkSpaces Bundles .

    • Tags (list) --

      The tags for the WorkSpace.

      • (dict) --

        Describes a tag.

        • Key (string) -- [REQUIRED]

          The key of the tag.

        • Value (string) --

          The value of the tag.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceRequest': {
                'DirectoryId': 'string',
                'UserName': 'string',
                'BundleId': 'string',
                'VolumeEncryptionKey': 'string',
                'UserVolumeEncryptionEnabled': True|False,
                'RootVolumeEncryptionEnabled': True|False,
                'WorkspaceProperties': {
                    'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
                    'RunningModeAutoStopTimeoutInMinutes': 123,
                    'RootVolumeSizeGib': 123,
                    'UserVolumeSizeGib': 123,
                    'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
                },
                'Tags': [
                    {
                        'Key': 'string',
                        'Value': 'string'
                    },
                ]
            },
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ],
    'PendingRequests': [
        {
            'WorkspaceId': 'string',
            'DirectoryId': 'string',
            'UserName': 'string',
            'IpAddress': 'string',
            'State': 'PENDING'|'AVAILABLE'|'IMPAIRED'|'UNHEALTHY'|'REBOOTING'|'STARTING'|'REBUILDING'|'RESTORING'|'MAINTENANCE'|'ADMIN_MAINTENANCE'|'TERMINATING'|'TERMINATED'|'SUSPENDED'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR',
            'BundleId': 'string',
            'SubnetId': 'string',
            'ErrorMessage': 'string',
            'ErrorCode': 'string',
            'ComputerName': 'string',
            'VolumeEncryptionKey': 'string',
            'UserVolumeEncryptionEnabled': True|False,
            'RootVolumeEncryptionEnabled': True|False,
            'WorkspaceProperties': {
                'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
                'RunningModeAutoStopTimeoutInMinutes': 123,
                'RootVolumeSizeGib': 123,
                'UserVolumeSizeGib': 123,
                'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'ModificationStates': [
                {
                    'Resource': 'ROOT_VOLUME'|'USER_VOLUME'|'COMPUTE_TYPE',
                    'State': 'UPDATE_INITIATED'|'UPDATE_IN_PROGRESS'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpaces that could not be created.

      • (dict) --

        Describes a WorkSpace that cannot be created.

        • WorkspaceRequest (dict) --

          Information about the WorkSpace.

          • DirectoryId (string) --

            The identifier of the AWS Directory Service directory for the WorkSpace. You can use DescribeWorkspaceDirectories to list the available directories.

          • UserName (string) --

            The user name of the user for the WorkSpace. This user name must exist in the AWS Directory Service directory for the WorkSpace.

          • BundleId (string) --

            The identifier of the bundle for the WorkSpace. You can use DescribeWorkspaceBundles to list the available bundles.

          • VolumeEncryptionKey (string) --

            The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

          • UserVolumeEncryptionEnabled (boolean) --

            Indicates whether the data stored on the user volume is encrypted.

          • RootVolumeEncryptionEnabled (boolean) --

            Indicates whether the data stored on the root volume is encrypted.

          • WorkspaceProperties (dict) --

            The WorkSpace properties.

            • RunningMode (string) --

              The running mode. For more information, see Manage the WorkSpace Running Mode .

            • RunningModeAutoStopTimeoutInMinutes (integer) --

              The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

            • RootVolumeSizeGib (integer) --

              The size of the root volume.

            • UserVolumeSizeGib (integer) --

              The size of the user storage.

            • ComputeTypeName (string) --

              The compute type. For more information, see Amazon WorkSpaces Bundles .

          • Tags (list) --

            The tags for the WorkSpace.

            • (dict) --

              Describes a tag.

              • Key (string) --

                The key of the tag.

              • Value (string) --

                The value of the tag.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be created.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be created.

    • PendingRequests (list) --

      Information about the WorkSpaces that were created.

      Because this operation is asynchronous, the identifier returned is not immediately available for use with other operations. For example, if you call DescribeWorkspaces before the WorkSpace is created, the information returned can be incomplete.

      • (dict) --

        Describes a WorkSpace.

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • DirectoryId (string) --

          The identifier of the AWS Directory Service directory for the WorkSpace.

        • UserName (string) --

          The user for the WorkSpace.

        • IpAddress (string) --

          The IP address of the WorkSpace.

        • State (string) --

          The operational state of the WorkSpace.

        • BundleId (string) --

          The identifier of the bundle used to create the WorkSpace.

        • SubnetId (string) --

          The identifier of the subnet for the WorkSpace.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be created.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be created.

        • ComputerName (string) --

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

        • VolumeEncryptionKey (string) --

          The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

        • UserVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the user volume is encrypted.

        • RootVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the root volume is encrypted.

        • WorkspaceProperties (dict) --

          The properties of the WorkSpace.

          • RunningMode (string) --

            The running mode. For more information, see Manage the WorkSpace Running Mode .

          • RunningModeAutoStopTimeoutInMinutes (integer) --

            The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

          • RootVolumeSizeGib (integer) --

            The size of the root volume.

          • UserVolumeSizeGib (integer) --

            The size of the user storage.

          • ComputeTypeName (string) --

            The compute type. For more information, see Amazon WorkSpaces Bundles .

        • ModificationStates (list) --

          The modification states of the WorkSpace.

          • (dict) --

            Describes a WorkSpace modification.

            • Resource (string) --

              The resource.

            • State (string) --

              The modification state.

Exceptions

  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
delete_ip_group(**kwargs)

Deletes the specified IP access control group.

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

See also: AWS API Documentation

Request Syntax

response = client.delete_ip_group(
    GroupId='string'
)
Parameters
GroupId (string) --

[REQUIRED]

The identifier of the IP access control group.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceAssociatedException
  • WorkSpaces.Client.exceptions.AccessDeniedException
delete_tags(**kwargs)

Deletes the specified tags from the specified WorkSpaces resource.

See also: AWS API Documentation

Request Syntax

response = client.delete_tags(
    ResourceId='string',
    TagKeys=[
        'string',
    ]
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, and IP access control groups.

  • TagKeys (list) --

    [REQUIRED]

    The tag keys.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
delete_workspace_image(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.delete_workspace_image(
    ImageId='string'
)
Parameters
ImageId (string) --

[REQUIRED]

The identifier of the image.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.ResourceAssociatedException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException
deregister_workspace_directory(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.deregister_workspace_directory(
    DirectoryId='string'
)
Parameters
DirectoryId (string) --

[REQUIRED]

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.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
describe_account()

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

See also: AWS API Documentation

Request Syntax

response = client.describe_account()
Return type
dict
Returns
Response Syntax
{
    'DedicatedTenancySupport': 'ENABLED'|'DISABLED',
    'DedicatedTenancyManagementCidrRange': 'string'
}

Response Structure

  • (dict) --
    • DedicatedTenancySupport (string) --

      The status of BYOL (whether BYOL is enabled or disabled).

    • DedicatedTenancyManagementCidrRange (string) --

      The IP address range, specified as an IPv4 CIDR block, used for the management network interface.

      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.

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_account_modifications(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.describe_account_modifications(
    NextToken='string'
)
Parameters
NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Return type
dict
Returns
Response Syntax
{
    'AccountModifications': [
        {
            'ModificationState': 'PENDING'|'COMPLETED'|'FAILED',
            'DedicatedTenancySupport': 'ENABLED'|'DISABLED',
            'DedicatedTenancyManagementCidrRange': 'string',
            'StartTime': datetime(2015, 1, 1),
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • AccountModifications (list) --

      The list of modifications to the configuration of BYOL.

      • (dict) --

        Describes a modification to the configuration of Bring Your Own License (BYOL) for the specified account.

        • ModificationState (string) --

          The state of the modification to the configuration of BYOL.

        • DedicatedTenancySupport (string) --

          The status of BYOL (whether BYOL is being enabled or disabled).

        • DedicatedTenancyManagementCidrRange (string) --

          The IP address range, specified as an IPv4 CIDR block, for the management network interface used for the account.

        • StartTime (datetime) --

          The timestamp when the modification of the BYOL configuration was started.

        • ErrorCode (string) --

          The error code that is returned if the configuration of BYOL cannot be modified.

        • ErrorMessage (string) --

          The text of the error message that is returned if the configuration of BYOL cannot be modified.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_client_properties(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.describe_client_properties(
    ResourceIds=[
        'string',
    ]
)
Parameters
ResourceIds (list) --

[REQUIRED]

The resource identifier, in the form of directory IDs.

  • (string) --
Return type
dict
Returns
Response Syntax
{
    'ClientPropertiesList': [
        {
            'ResourceId': 'string',
            'ClientProperties': {
                'ReconnectEnabled': 'ENABLED'|'DISABLED'
            }
        },
    ]
}

Response Structure

  • (dict) --
    • ClientPropertiesList (list) --

      Information about the specified Amazon WorkSpaces clients.

      • (dict) --

        Information about the Amazon WorkSpaces client.

        • ResourceId (string) --

          The resource identifier, in the form of a directory ID.

        • ClientProperties (dict) --

          Information about the Amazon WorkSpaces client.

          • ReconnectEnabled (string) --

            Specifies whether users can cache their credentials on the Amazon WorkSpaces client. When enabled, users can choose to reconnect to their WorkSpaces without re-entering their credentials.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_ip_groups(**kwargs)

Describes one or more of your IP access control groups.

See also: AWS API Documentation

Request Syntax

response = client.describe_ip_groups(
    GroupIds=[
        'string',
    ],
    NextToken='string',
    MaxResults=123
)
Parameters
  • GroupIds (list) --

    The identifiers of one or more IP access control groups.

    • (string) --
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
  • MaxResults (integer) -- The maximum number of items to return.
Return type

dict

Returns

Response Syntax

{
    'Result': [
        {
            'groupId': 'string',
            'groupName': 'string',
            'groupDesc': 'string',
            'userRules': [
                {
                    'ipRule': 'string',
                    'ruleDesc': 'string'
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Result (list) --

      Information about the IP access control groups.

      • (dict) --

        Describes an IP access control group.

        • groupId (string) --

          The identifier of the group.

        • groupName (string) --

          The name of the group.

        • groupDesc (string) --

          The description of the group.

        • userRules (list) --

          The rules.

          • (dict) --

            Describes a rule for an IP access control group.

            • ipRule (string) --

              The IP address range, in CIDR notation.

            • ruleDesc (string) --

              The description.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_tags(**kwargs)

Describes the specified tags for the specified WorkSpaces resource.

See also: AWS API Documentation

Request Syntax

response = client.describe_tags(
    ResourceId='string'
)
Parameters
ResourceId (string) --

[REQUIRED]

The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, and IP access control groups.

Return type
dict
Returns
Response Syntax
{
    'TagList': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • TagList (list) --

      The tags.

      • (dict) --

        Describes a tag.

        • Key (string) --

          The key of the tag.

        • Value (string) --

          The value of the tag.

Exceptions

  • WorkSpaces.Client.exceptions.ResourceNotFoundException
describe_workspace_bundles(**kwargs)

Retrieves a list that describes the available WorkSpace bundles.

You can filter the results using either bundle ID or owner, but not both.

See also: AWS API Documentation

Request Syntax

response = client.describe_workspace_bundles(
    BundleIds=[
        'string',
    ],
    Owner='string',
    NextToken='string'
)
Parameters
  • BundleIds (list) --

    The identifiers of the bundles. You cannot combine this parameter with any other filter.

    • (string) --
  • Owner (string) --

    The owner of the bundles. You cannot combine this parameter with any other filter.

    Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong to your account.

  • NextToken (string) -- The token for the next set of results. (You received this token from a previous call.)
Return type

dict

Returns

Response Syntax

{
    'Bundles': [
        {
            'BundleId': 'string',
            'Name': 'string',
            'Owner': 'string',
            'Description': 'string',
            'ImageId': 'string',
            'RootStorage': {
                'Capacity': 'string'
            },
            'UserStorage': {
                'Capacity': 'string'
            },
            'ComputeType': {
                'Name': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'LastUpdatedTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Bundles (list) --

      Information about the bundles.

      • (dict) --

        Describes a WorkSpace bundle.

        • BundleId (string) --

          The bundle identifier.

        • Name (string) --

          The name of the bundle.

        • Owner (string) --

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

        • Description (string) --

          A description.

        • ImageId (string) --

          The image identifier of the bundle.

        • RootStorage (dict) --

          The size of the root volume.

          • Capacity (string) --

            The size of the root volume.

        • UserStorage (dict) --

          The size of the user storage.

          • Capacity (string) --

            The size of the user storage.

        • ComputeType (dict) --

          The compute type. For more information, see Amazon WorkSpaces Bundles .

          • Name (string) --

            The compute type.

        • LastUpdatedTime (datetime) --

          The last time that the bundle was updated.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if there are no more results available. This token is valid for one day and must be used within that time frame.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
describe_workspace_directories(**kwargs)

Describes the available directories that are registered with Amazon WorkSpaces.

See also: AWS API Documentation

Request Syntax

response = client.describe_workspace_directories(
    DirectoryIds=[
        'string',
    ],
    Limit=123,
    NextToken='string'
)
Parameters
  • DirectoryIds (list) --

    The identifiers of the directories. If the value is null, all directories are retrieved.

    • (string) --
  • Limit (integer) -- The maximum number of directories to return.
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Return type

dict

Returns

Response Syntax

{
    'Directories': [
        {
            'DirectoryId': 'string',
            'Alias': 'string',
            'DirectoryName': 'string',
            'RegistrationCode': 'string',
            'SubnetIds': [
                'string',
            ],
            'DnsIpAddresses': [
                'string',
            ],
            'CustomerUserName': 'string',
            'IamRoleId': 'string',
            'DirectoryType': 'SIMPLE_AD'|'AD_CONNECTOR',
            'WorkspaceSecurityGroupId': 'string',
            'State': 'REGISTERING'|'REGISTERED'|'DEREGISTERING'|'DEREGISTERED'|'ERROR',
            'WorkspaceCreationProperties': {
                'EnableWorkDocs': True|False,
                'EnableInternetAccess': True|False,
                'DefaultOu': 'string',
                'CustomSecurityGroupId': 'string',
                'UserEnabledAsLocalAdministrator': True|False,
                'EnableMaintenanceMode': True|False
            },
            'ipGroupIds': [
                'string',
            ],
            'WorkspaceAccessProperties': {
                'DeviceTypeWindows': 'ALLOW'|'DENY',
                'DeviceTypeOsx': 'ALLOW'|'DENY',
                'DeviceTypeWeb': 'ALLOW'|'DENY',
                'DeviceTypeIos': 'ALLOW'|'DENY',
                'DeviceTypeAndroid': 'ALLOW'|'DENY',
                'DeviceTypeChromeOs': 'ALLOW'|'DENY',
                'DeviceTypeZeroClient': 'ALLOW'|'DENY'
            },
            'Tenancy': 'DEDICATED'|'SHARED',
            'SelfservicePermissions': {
                'RestartWorkspace': 'ENABLED'|'DISABLED',
                'IncreaseVolumeSize': 'ENABLED'|'DISABLED',
                'ChangeComputeType': 'ENABLED'|'DISABLED',
                'SwitchRunningMode': 'ENABLED'|'DISABLED',
                'RebuildWorkspace': 'ENABLED'|'DISABLED'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Directories (list) --

      Information about the directories.

      • (dict) --

        Describes a directory that is used with Amazon WorkSpaces.

        • DirectoryId (string) --

          The directory identifier.

        • Alias (string) --

          The directory alias.

        • DirectoryName (string) --

          The name of the directory.

        • RegistrationCode (string) --

          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 (list) --

          The identifiers of the subnets used with the directory.

          • (string) --
        • DnsIpAddresses (list) --

          The IP addresses of the DNS servers for the directory.

          • (string) --
        • CustomerUserName (string) --

          The user name for the service account.

        • IamRoleId (string) --

          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 (string) --

          The directory type.

        • WorkspaceSecurityGroupId (string) --

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

        • State (string) --

          The state of the directory's registration with Amazon WorkSpaces.

        • WorkspaceCreationProperties (dict) --

          The default creation properties for all WorkSpaces in the directory.

          • EnableWorkDocs (boolean) --

            Specifies whether the directory is enabled for Amazon WorkDocs.

          • EnableInternetAccess (boolean) --

            Specifies whether to automatically assign an Elastic public IP address to WorkSpaces in this directory by default. If enabled, the Elastic public IP address allows outbound internet access from your WorkSpaces when you’re using an internet gateway in the Amazon VPC in which your WorkSpaces are located. If you're using a Network Address Translation (NAT) gateway for outbound internet access from your VPC, or if your WorkSpaces are in public subnets and you manually assign them Elastic IP addresses, you should disable this setting. This setting applies to new WorkSpaces that you launch or to existing WorkSpaces that you rebuild. For more information, see Configure a VPC for Amazon WorkSpaces .

          • DefaultOu (string) --

            The organizational unit (OU) in the directory for the WorkSpace machine accounts.

          • CustomSecurityGroupId (string) --

            The identifier of any security groups to apply to WorkSpaces when they are created.

          • UserEnabledAsLocalAdministrator (boolean) --

            Specifies whether WorkSpace users are local administrators on their WorkSpaces.

          • EnableMaintenanceMode (boolean) --

            Specifies whether maintenance mode is enabled for WorkSpaces. For more information, see WorkSpace Maintenance .

        • ipGroupIds (list) --

          The identifiers of the IP access control groups associated with the directory.

          • (string) --
        • WorkspaceAccessProperties (dict) --

          The devices and operating systems that users can use to access WorkSpaces.

          • DeviceTypeWindows (string) --

            Indicates whether users can use Windows clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

          • DeviceTypeOsx (string) --

            Indicates whether users can use macOS clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

          • DeviceTypeWeb (string) --

            Indicates whether users can access their WorkSpaces through a web browser.

          • DeviceTypeIos (string) --

            Indicates whether users can use iOS devices to access their WorkSpaces.

          • DeviceTypeAndroid (string) --

            Indicates whether users can use Android devices to access their WorkSpaces.

          • DeviceTypeChromeOs (string) --

            Indicates whether users can use Chromebooks to access their WorkSpaces.

          • DeviceTypeZeroClient (string) --

            Indicates whether users can use zero client devices to access their WorkSpaces.

        • Tenancy (string) --

          Specifies whether the directory is dedicated or shared. To use Bring Your Own License (BYOL), this value must be set to DEDICATED . For more information, see Bring Your Own Windows Desktop Images .

        • SelfservicePermissions (dict) --

          The default self-service permissions for WorkSpaces in the directory.

          • RestartWorkspace (string) --

            Specifies whether users can restart their WorkSpace.

          • IncreaseVolumeSize (string) --

            Specifies whether users can increase the volume size of the drives on their WorkSpace.

          • ChangeComputeType (string) --

            Specifies whether users can change the compute type (bundle) for their WorkSpace.

          • SwitchRunningMode (string) --

            Specifies whether users can switch the running mode of their WorkSpace.

          • RebuildWorkspace (string) --

            Specifies whether users can rebuild the operating system of a WorkSpace to its original state.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
describe_workspace_images(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.describe_workspace_images(
    ImageIds=[
        'string',
    ],
    NextToken='string',
    MaxResults=123
)
Parameters
  • ImageIds (list) --

    The identifier of the image.

    • (string) --
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
  • MaxResults (integer) -- The maximum number of items to return.
Return type

dict

Returns

Response Syntax

{
    'Images': [
        {
            'ImageId': 'string',
            'Name': 'string',
            'Description': 'string',
            'OperatingSystem': {
                'Type': 'WINDOWS'|'LINUX'
            },
            'State': 'AVAILABLE'|'PENDING'|'ERROR',
            'RequiredTenancy': 'DEFAULT'|'DEDICATED',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Images (list) --

      Information about the images.

      • (dict) --

        Describes a WorkSpace image.

        • ImageId (string) --

          The identifier of the image.

        • Name (string) --

          The name of the image.

        • Description (string) --

          The description of the image.

        • OperatingSystem (dict) --

          The operating system that the image is running.

          • Type (string) --

            The operating system.

        • State (string) --

          The status of the image.

        • RequiredTenancy (string) --

          Specifies whether the image is running on dedicated hardware. When Bring Your Own License (BYOL) is enabled, this value is set to DEDICATED . For more information, see Bring Your Own Windows Desktop Images .

        • ErrorCode (string) --

          The error code that is returned for the image.

        • ErrorMessage (string) --

          The text of the error message that is returned for the image.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_workspace_snapshots(**kwargs)

Describes the snapshots for the specified WorkSpace.

See also: AWS API Documentation

Request Syntax

response = client.describe_workspace_snapshots(
    WorkspaceId='string'
)
Parameters
WorkspaceId (string) --

[REQUIRED]

The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'RebuildSnapshots': [
        {
            'SnapshotTime': datetime(2015, 1, 1)
        },
    ],
    'RestoreSnapshots': [
        {
            'SnapshotTime': datetime(2015, 1, 1)
        },
    ]
}

Response Structure

  • (dict) --
    • RebuildSnapshots (list) --

      Information about the snapshots that can be used to rebuild a WorkSpace. These snapshots include the user volume.

      • (dict) --

        Describes a snapshot.

        • SnapshotTime (datetime) --

          The time when the snapshot was created.

    • RestoreSnapshots (list) --

      Information about the snapshots that can be used to restore a WorkSpace. These snapshots include both the root volume and the user volume.

      • (dict) --

        Describes a snapshot.

        • SnapshotTime (datetime) --

          The time when the snapshot was created.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
describe_workspaces(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.describe_workspaces(
    WorkspaceIds=[
        'string',
    ],
    DirectoryId='string',
    UserName='string',
    BundleId='string',
    Limit=123,
    NextToken='string'
)
Parameters
  • WorkspaceIds (list) --

    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.

    • (string) --
  • DirectoryId (string) -- 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.
  • UserName (string) -- The name of the directory user. You must specify this parameter with DirectoryId .
  • BundleId (string) -- The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.
  • Limit (integer) -- The maximum number of items to return.
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Return type

dict

Returns

Response Syntax

{
    'Workspaces': [
        {
            'WorkspaceId': 'string',
            'DirectoryId': 'string',
            'UserName': 'string',
            'IpAddress': 'string',
            'State': 'PENDING'|'AVAILABLE'|'IMPAIRED'|'UNHEALTHY'|'REBOOTING'|'STARTING'|'REBUILDING'|'RESTORING'|'MAINTENANCE'|'ADMIN_MAINTENANCE'|'TERMINATING'|'TERMINATED'|'SUSPENDED'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR',
            'BundleId': 'string',
            'SubnetId': 'string',
            'ErrorMessage': 'string',
            'ErrorCode': 'string',
            'ComputerName': 'string',
            'VolumeEncryptionKey': 'string',
            'UserVolumeEncryptionEnabled': True|False,
            'RootVolumeEncryptionEnabled': True|False,
            'WorkspaceProperties': {
                'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
                'RunningModeAutoStopTimeoutInMinutes': 123,
                'RootVolumeSizeGib': 123,
                'UserVolumeSizeGib': 123,
                'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'ModificationStates': [
                {
                    'Resource': 'ROOT_VOLUME'|'USER_VOLUME'|'COMPUTE_TYPE',
                    'State': 'UPDATE_INITIATED'|'UPDATE_IN_PROGRESS'
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Workspaces (list) --

      Information about the WorkSpaces.

      Because CreateWorkspaces is an asynchronous operation, some of the returned information could be incomplete.

      • (dict) --

        Describes a WorkSpace.

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • DirectoryId (string) --

          The identifier of the AWS Directory Service directory for the WorkSpace.

        • UserName (string) --

          The user for the WorkSpace.

        • IpAddress (string) --

          The IP address of the WorkSpace.

        • State (string) --

          The operational state of the WorkSpace.

        • BundleId (string) --

          The identifier of the bundle used to create the WorkSpace.

        • SubnetId (string) --

          The identifier of the subnet for the WorkSpace.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be created.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be created.

        • ComputerName (string) --

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

        • VolumeEncryptionKey (string) --

          The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

        • UserVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the user volume is encrypted.

        • RootVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the root volume is encrypted.

        • WorkspaceProperties (dict) --

          The properties of the WorkSpace.

          • RunningMode (string) --

            The running mode. For more information, see Manage the WorkSpace Running Mode .

          • RunningModeAutoStopTimeoutInMinutes (integer) --

            The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

          • RootVolumeSizeGib (integer) --

            The size of the root volume.

          • UserVolumeSizeGib (integer) --

            The size of the user storage.

          • ComputeTypeName (string) --

            The compute type. For more information, see Amazon WorkSpaces Bundles .

        • ModificationStates (list) --

          The modification states of the WorkSpace.

          • (dict) --

            Describes a WorkSpace modification.

            • Resource (string) --

              The resource.

            • State (string) --

              The modification state.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceUnavailableException
describe_workspaces_connection_status(**kwargs)

Describes the connection status of the specified WorkSpaces.

See also: AWS API Documentation

Request Syntax

response = client.describe_workspaces_connection_status(
    WorkspaceIds=[
        'string',
    ],
    NextToken='string'
)
Parameters
  • WorkspaceIds (list) --

    The identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.

    • (string) --
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Return type

dict

Returns

Response Syntax

{
    'WorkspacesConnectionStatus': [
        {
            'WorkspaceId': 'string',
            'ConnectionState': 'CONNECTED'|'DISCONNECTED'|'UNKNOWN',
            'ConnectionStateCheckTimestamp': datetime(2015, 1, 1),
            'LastKnownUserConnectionTimestamp': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • WorkspacesConnectionStatus (list) --

      Information about the connection status of the WorkSpace.

      • (dict) --

        Describes the connection status of a WorkSpace.

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ConnectionState (string) --

          The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.

        • ConnectionStateCheckTimestamp (datetime) --

          The timestamp of the connection status check.

        • LastKnownUserConnectionTimestamp (datetime) --

          The timestamp of the last known user connection.

    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
disassociate_ip_groups(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.disassociate_ip_groups(
    DirectoryId='string',
    GroupIds=[
        'string',
    ]
)
Parameters
  • DirectoryId (string) --

    [REQUIRED]

    The identifier of the directory.

  • GroupIds (list) --

    [REQUIRED]

    The identifiers of one or more IP access control groups.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException
generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
import_workspace_image(**kwargs)

Imports the specified Windows 7 or Windows 10 Bring Your Own License (BYOL) image into Amazon WorkSpaces. The image must be an already licensed EC2 image that is in your AWS account, and you must own the image.

See also: AWS API Documentation

Request Syntax

response = client.import_workspace_image(
    Ec2ImageId='string',
    IngestionProcess='BYOL_REGULAR'|'BYOL_GRAPHICS'|'BYOL_GRAPHICSPRO',
    ImageName='string',
    ImageDescription='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • Ec2ImageId (string) --

    [REQUIRED]

    The identifier of the EC2 image.

  • IngestionProcess (string) --

    [REQUIRED]

    The ingestion process to be used when importing the image.

  • ImageName (string) --

    [REQUIRED]

    The name of the WorkSpace image.

  • ImageDescription (string) --

    [REQUIRED]

    The description of the WorkSpace image.

  • Tags (list) --

    The tags. Each WorkSpaces resource can have a maximum of 50 tags.

    • (dict) --

      Describes a tag.

      • Key (string) -- [REQUIRED]

        The key of the tag.

      • Value (string) --

        The value of the tag.

Return type

dict

Returns

Response Syntax

{
    'ImageId': 'string'
}

Response Structure

  • (dict) --

    • ImageId (string) --

      The identifier of the WorkSpace image.

Exceptions

  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.ResourceAlreadyExistsException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
list_available_management_cidr_ranges(**kwargs)

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).

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.

See also: AWS API Documentation

Request Syntax

response = client.list_available_management_cidr_ranges(
    ManagementCidrRangeConstraint='string',
    MaxResults=123,
    NextToken='string'
)
Parameters
  • ManagementCidrRangeConstraint (string) --

    [REQUIRED]

    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).

  • MaxResults (integer) -- The maximum number of items to return.
  • NextToken (string) -- If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
Return type

dict

Returns

Response Syntax

{
    'ManagementCidrRanges': [
        'string',
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ManagementCidrRanges (list) --

      The list of available IP address ranges, specified as IPv4 CIDR blocks.

      • (string) --
    • NextToken (string) --

      The token to use to retrieve the next set of results, or null if no more results are available.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.AccessDeniedException
migrate_workspace(**kwargs)

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 .

See also: AWS API Documentation

Request Syntax

response = client.migrate_workspace(
    SourceWorkspaceId='string',
    BundleId='string'
)
Parameters
  • SourceWorkspaceId (string) --

    [REQUIRED]

    The identifier of the WorkSpace to migrate from.

  • BundleId (string) --

    [REQUIRED]

    The identifier of the target bundle type to migrate the WorkSpace to.

Return type

dict

Returns

Response Syntax

{
    'SourceWorkspaceId': 'string',
    'TargetWorkspaceId': 'string'
}

Response Structure

  • (dict) --

    • SourceWorkspaceId (string) --

      The original identifier of the WorkSpace that is being migrated.

    • TargetWorkspaceId (string) --

      The new identifier of the WorkSpace that is being migrated. If the migration does not succeed, the target WorkSpace ID will not be used, and the WorkSpace will still have the original WorkSpace ID.

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
  • WorkSpaces.Client.exceptions.OperationInProgressException
  • WorkSpaces.Client.exceptions.ResourceUnavailableException
modify_account(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.modify_account(
    DedicatedTenancySupport='ENABLED',
    DedicatedTenancyManagementCidrRange='string'
)
Parameters
  • DedicatedTenancySupport (string) -- The status of BYOL.
  • DedicatedTenancyManagementCidrRange (string) -- 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.
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.ResourceUnavailableException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
modify_client_properties(**kwargs)

Modifies the properties of the specified Amazon WorkSpaces clients.

See also: AWS API Documentation

Request Syntax

response = client.modify_client_properties(
    ResourceId='string',
    ClientProperties={
        'ReconnectEnabled': 'ENABLED'|'DISABLED'
    }
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The resource identifiers, in the form of directory IDs.

  • ClientProperties (dict) --

    [REQUIRED]

    Information about the Amazon WorkSpaces client.

    • ReconnectEnabled (string) --

      Specifies whether users can cache their credentials on the Amazon WorkSpaces client. When enabled, users can choose to reconnect to their WorkSpaces without re-entering their credentials.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
modify_selfservice_permissions(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.modify_selfservice_permissions(
    ResourceId='string',
    SelfservicePermissions={
        'RestartWorkspace': 'ENABLED'|'DISABLED',
        'IncreaseVolumeSize': 'ENABLED'|'DISABLED',
        'ChangeComputeType': 'ENABLED'|'DISABLED',
        'SwitchRunningMode': 'ENABLED'|'DISABLED',
        'RebuildWorkspace': 'ENABLED'|'DISABLED'
    }
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The identifier of the directory.

  • SelfservicePermissions (dict) --

    [REQUIRED]

    The permissions to enable or disable self-service capabilities.

    • RestartWorkspace (string) --

      Specifies whether users can restart their WorkSpace.

    • IncreaseVolumeSize (string) --

      Specifies whether users can increase the volume size of the drives on their WorkSpace.

    • ChangeComputeType (string) --

      Specifies whether users can change the compute type (bundle) for their WorkSpace.

    • SwitchRunningMode (string) --

      Specifies whether users can switch the running mode of their WorkSpace.

    • RebuildWorkspace (string) --

      Specifies whether users can rebuild the operating system of a WorkSpace to its original state.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
modify_workspace_access_properties(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.modify_workspace_access_properties(
    ResourceId='string',
    WorkspaceAccessProperties={
        'DeviceTypeWindows': 'ALLOW'|'DENY',
        'DeviceTypeOsx': 'ALLOW'|'DENY',
        'DeviceTypeWeb': 'ALLOW'|'DENY',
        'DeviceTypeIos': 'ALLOW'|'DENY',
        'DeviceTypeAndroid': 'ALLOW'|'DENY',
        'DeviceTypeChromeOs': 'ALLOW'|'DENY',
        'DeviceTypeZeroClient': 'ALLOW'|'DENY'
    }
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The identifier of the directory.

  • WorkspaceAccessProperties (dict) --

    [REQUIRED]

    The device types and operating systems to enable or disable for access.

    • DeviceTypeWindows (string) --

      Indicates whether users can use Windows clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

    • DeviceTypeOsx (string) --

      Indicates whether users can use macOS clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

    • DeviceTypeWeb (string) --

      Indicates whether users can access their WorkSpaces through a web browser.

    • DeviceTypeIos (string) --

      Indicates whether users can use iOS devices to access their WorkSpaces.

    • DeviceTypeAndroid (string) --

      Indicates whether users can use Android devices to access their WorkSpaces.

    • DeviceTypeChromeOs (string) --

      Indicates whether users can use Chromebooks to access their WorkSpaces.

    • DeviceTypeZeroClient (string) --

      Indicates whether users can use zero client devices to access their WorkSpaces.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
modify_workspace_creation_properties(**kwargs)

Modify the default properties used to create WorkSpaces.

See also: AWS API Documentation

Request Syntax

response = client.modify_workspace_creation_properties(
    ResourceId='string',
    WorkspaceCreationProperties={
        'EnableInternetAccess': True|False,
        'DefaultOu': 'string',
        'CustomSecurityGroupId': 'string',
        'UserEnabledAsLocalAdministrator': True|False,
        'EnableMaintenanceMode': True|False
    }
)
Parameters
  • ResourceId (string) --

    [REQUIRED]

    The identifier of the directory.

  • WorkspaceCreationProperties (dict) --

    [REQUIRED]

    The default properties for creating WorkSpaces.

    • EnableInternetAccess (boolean) --

      Indicates whether internet access is enabled for your WorkSpaces.

    • DefaultOu (string) --

      The default organizational unit (OU) for your WorkSpace directories.

    • CustomSecurityGroupId (string) --

      The identifier of your custom security group.

    • UserEnabledAsLocalAdministrator (boolean) --

      Indicates whether users are local administrators of their WorkSpaces.

    • EnableMaintenanceMode (boolean) --

      Indicates whether maintenance mode is enabled for your WorkSpaces. For more information, see WorkSpace Maintenance .

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
modify_workspace_properties(**kwargs)

Modifies the specified WorkSpace properties.

See also: AWS API Documentation

Request Syntax

response = client.modify_workspace_properties(
    WorkspaceId='string',
    WorkspaceProperties={
        'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
        'RunningModeAutoStopTimeoutInMinutes': 123,
        'RootVolumeSizeGib': 123,
        'UserVolumeSizeGib': 123,
        'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
    }
)
Parameters
  • WorkspaceId (string) --

    [REQUIRED]

    The identifier of the WorkSpace.

  • WorkspaceProperties (dict) --

    [REQUIRED]

    The properties of the WorkSpace.

    • RunningMode (string) --

      The running mode. For more information, see Manage the WorkSpace Running Mode .

    • RunningModeAutoStopTimeoutInMinutes (integer) --

      The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

    • RootVolumeSizeGib (integer) --

      The size of the root volume.

    • UserVolumeSizeGib (integer) --

      The size of the user storage.

    • ComputeTypeName (string) --

      The compute type. For more information, see Amazon WorkSpaces Bundles .

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.OperationInProgressException
  • WorkSpaces.Client.exceptions.UnsupportedWorkspaceConfigurationException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.ResourceUnavailableException
modify_workspace_state(**kwargs)

Sets the state of the specified WorkSpace.

To maintain a WorkSpace without being interrupted, set the WorkSpace state to ADMIN_MAINTENANCE . 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 ADMIN_MAINTENANCE state.

See also: AWS API Documentation

Request Syntax

response = client.modify_workspace_state(
    WorkspaceId='string',
    WorkspaceState='AVAILABLE'|'ADMIN_MAINTENANCE'
)
Parameters
  • WorkspaceId (string) --

    [REQUIRED]

    The identifier of the WorkSpace.

  • WorkspaceState (string) --

    [REQUIRED]

    The WorkSpace state.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
reboot_workspaces(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.reboot_workspaces(
    RebootWorkspaceRequests=[
        {
            'WorkspaceId': 'string'
        },
    ]
)
Parameters
RebootWorkspaceRequests (list) --

[REQUIRED]

The WorkSpaces to reboot. You can specify up to 25 WorkSpaces.

  • (dict) --

    Describes the information used to reboot a WorkSpace.

    • WorkspaceId (string) -- [REQUIRED]

      The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceId': 'string',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpaces that could not be rebooted.

      • (dict) --

        Describes a WorkSpace that could not be rebooted. ( RebootWorkspaces ), rebuilt ( RebuildWorkspaces ), restored ( RestoreWorkspace ), terminated ( TerminateWorkspaces ), started ( StartWorkspaces ), or stopped ( StopWorkspaces ).

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be rebooted.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be rebooted.

rebuild_workspaces(**kwargs)

Rebuilds the specified WorkSpace.

You cannot rebuild a WorkSpace unless its state is AVAILABLE , ERROR , UNHEALTHY , or STOPPED .

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.

See also: AWS API Documentation

Request Syntax

response = client.rebuild_workspaces(
    RebuildWorkspaceRequests=[
        {
            'WorkspaceId': 'string'
        },
    ]
)
Parameters
RebuildWorkspaceRequests (list) --

[REQUIRED]

The WorkSpace to rebuild. You can specify a single WorkSpace.

  • (dict) --

    Describes the information used to rebuild a WorkSpace.

    • WorkspaceId (string) -- [REQUIRED]

      The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceId': 'string',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpace that could not be rebuilt.

      • (dict) --

        Describes a WorkSpace that could not be rebooted. ( RebootWorkspaces ), rebuilt ( RebuildWorkspaces ), restored ( RestoreWorkspace ), terminated ( TerminateWorkspaces ), started ( StartWorkspaces ), or stopped ( StopWorkspaces ).

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be rebooted.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be rebooted.

register_workspace_directory(**kwargs)

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 workspaces_DefaultRole role before you can register a directory. For more information, see Creating the workspaces_DefaultRole Role .

See also: AWS API Documentation

Request Syntax

response = client.register_workspace_directory(
    DirectoryId='string',
    SubnetIds=[
        'string',
    ],
    EnableWorkDocs=True|False,
    EnableSelfService=True|False,
    Tenancy='DEDICATED'|'SHARED',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • DirectoryId (string) --

    [REQUIRED]

    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.

  • SubnetIds (list) --

    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.

    • (string) --
  • EnableWorkDocs (boolean) --

    [REQUIRED]

    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.

  • EnableSelfService (boolean) -- Indicates whether self-service capabilities are enabled or disabled.
  • Tenancy (string) -- 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 .
  • Tags (list) --

    The tags associated with the directory.

    • (dict) --

      Describes a tag.

      • Key (string) -- [REQUIRED]

        The key of the tag.

      • Value (string) --

        The value of the tag.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.AccessDeniedException
  • WorkSpaces.Client.exceptions.WorkspacesDefaultRoleNotFoundException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.UnsupportedNetworkConfigurationException
  • WorkSpaces.Client.exceptions.OperationNotSupportedException
restore_workspace(**kwargs)

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.

See also: AWS API Documentation

Request Syntax

response = client.restore_workspace(
    WorkspaceId='string'
)
Parameters
WorkspaceId (string) --

[REQUIRED]

The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.AccessDeniedException
revoke_ip_rules(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.revoke_ip_rules(
    GroupId='string',
    UserRules=[
        'string',
    ]
)
Parameters
  • GroupId (string) --

    [REQUIRED]

    The identifier of the group.

  • UserRules (list) --

    [REQUIRED]

    The rules to remove from the group.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException
start_workspaces(**kwargs)

Starts the specified WorkSpaces.

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

See also: AWS API Documentation

Request Syntax

response = client.start_workspaces(
    StartWorkspaceRequests=[
        {
            'WorkspaceId': 'string'
        },
    ]
)
Parameters
StartWorkspaceRequests (list) --

[REQUIRED]

The WorkSpaces to start. You can specify up to 25 WorkSpaces.

  • (dict) --

    Information used to start a WorkSpace.

    • WorkspaceId (string) --

      The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceId': 'string',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpaces that could not be started.

      • (dict) --

        Describes a WorkSpace that could not be rebooted. ( RebootWorkspaces ), rebuilt ( RebuildWorkspaces ), restored ( RestoreWorkspace ), terminated ( TerminateWorkspaces ), started ( StartWorkspaces ), or stopped ( StopWorkspaces ).

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be rebooted.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be rebooted.

stop_workspaces(**kwargs)

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 .

See also: AWS API Documentation

Request Syntax

response = client.stop_workspaces(
    StopWorkspaceRequests=[
        {
            'WorkspaceId': 'string'
        },
    ]
)
Parameters
StopWorkspaceRequests (list) --

[REQUIRED]

The WorkSpaces to stop. You can specify up to 25 WorkSpaces.

  • (dict) --

    Describes the information used to stop a WorkSpace.

    • WorkspaceId (string) --

      The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceId': 'string',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpaces that could not be stopped.

      • (dict) --

        Describes a WorkSpace that could not be rebooted. ( RebootWorkspaces ), rebuilt ( RebuildWorkspaces ), restored ( RestoreWorkspace ), terminated ( TerminateWorkspaces ), started ( StartWorkspaces ), or stopped ( StopWorkspaces ).

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be rebooted.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be rebooted.

terminate_workspaces(**kwargs)

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 Amazon Web Services 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.

See also: AWS API Documentation

Request Syntax

response = client.terminate_workspaces(
    TerminateWorkspaceRequests=[
        {
            'WorkspaceId': 'string'
        },
    ]
)
Parameters
TerminateWorkspaceRequests (list) --

[REQUIRED]

The WorkSpaces to terminate. You can specify up to 25 WorkSpaces.

  • (dict) --

    Describes the information used to terminate a WorkSpace.

    • WorkspaceId (string) -- [REQUIRED]

      The identifier of the WorkSpace.

Return type
dict
Returns
Response Syntax
{
    'FailedRequests': [
        {
            'WorkspaceId': 'string',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • FailedRequests (list) --

      Information about the WorkSpaces that could not be terminated.

      • (dict) --

        Describes a WorkSpace that could not be rebooted. ( RebootWorkspaces ), rebuilt ( RebuildWorkspaces ), restored ( RestoreWorkspace ), terminated ( TerminateWorkspaces ), started ( StartWorkspaces ), or stopped ( StopWorkspaces ).

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be rebooted.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be rebooted.

update_rules_of_ip_group(**kwargs)

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

See also: AWS API Documentation

Request Syntax

response = client.update_rules_of_ip_group(
    GroupId='string',
    UserRules=[
        {
            'ipRule': 'string',
            'ruleDesc': 'string'
        },
    ]
)
Parameters
  • GroupId (string) --

    [REQUIRED]

    The identifier of the group.

  • UserRules (list) --

    [REQUIRED]

    One or more rules.

    • (dict) --

      Describes a rule for an IP access control group.

      • ipRule (string) --

        The IP address range, in CIDR notation.

      • ruleDesc (string) --

        The description.

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • WorkSpaces.Client.exceptions.InvalidParameterValuesException
  • WorkSpaces.Client.exceptions.ResourceNotFoundException
  • WorkSpaces.Client.exceptions.ResourceLimitExceededException
  • WorkSpaces.Client.exceptions.InvalidResourceStateException
  • WorkSpaces.Client.exceptions.AccessDeniedException

Paginators

The available paginators are:

class WorkSpaces.Paginator.DescribeAccountModifications
paginator = client.get_paginator('describe_account_modifications')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_account_modifications().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'AccountModifications': [
        {
            'ModificationState': 'PENDING'|'COMPLETED'|'FAILED',
            'DedicatedTenancySupport': 'ENABLED'|'DISABLED',
            'DedicatedTenancyManagementCidrRange': 'string',
            'StartTime': datetime(2015, 1, 1),
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ],

}

Response Structure

  • (dict) --
    • AccountModifications (list) --

      The list of modifications to the configuration of BYOL.

      • (dict) --

        Describes a modification to the configuration of Bring Your Own License (BYOL) for the specified account.

        • ModificationState (string) --

          The state of the modification to the configuration of BYOL.

        • DedicatedTenancySupport (string) --

          The status of BYOL (whether BYOL is being enabled or disabled).

        • DedicatedTenancyManagementCidrRange (string) --

          The IP address range, specified as an IPv4 CIDR block, for the management network interface used for the account.

        • StartTime (datetime) --

          The timestamp when the modification of the BYOL configuration was started.

        • ErrorCode (string) --

          The error code that is returned if the configuration of BYOL cannot be modified.

        • ErrorMessage (string) --

          The text of the error message that is returned if the configuration of BYOL cannot be modified.

class WorkSpaces.Paginator.DescribeIpGroups
paginator = client.get_paginator('describe_ip_groups')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_ip_groups().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    GroupIds=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • GroupIds (list) --

    The identifiers of one or more IP access control groups.

    • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Result': [
        {
            'groupId': 'string',
            'groupName': 'string',
            'groupDesc': 'string',
            'userRules': [
                {
                    'ipRule': 'string',
                    'ruleDesc': 'string'
                },
            ]
        },
    ],

}

Response Structure

  • (dict) --

    • Result (list) --

      Information about the IP access control groups.

      • (dict) --

        Describes an IP access control group.

        • groupId (string) --

          The identifier of the group.

        • groupName (string) --

          The name of the group.

        • groupDesc (string) --

          The description of the group.

        • userRules (list) --

          The rules.

          • (dict) --

            Describes a rule for an IP access control group.

            • ipRule (string) --

              The IP address range, in CIDR notation.

            • ruleDesc (string) --

              The description.

class WorkSpaces.Paginator.DescribeWorkspaceBundles
paginator = client.get_paginator('describe_workspace_bundles')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_workspace_bundles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    BundleIds=[
        'string',
    ],
    Owner='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • BundleIds (list) --

    The identifiers of the bundles. You cannot combine this parameter with any other filter.

    • (string) --
  • Owner (string) --

    The owner of the bundles. You cannot combine this parameter with any other filter.

    Specify AMAZON to describe the bundles provided by AWS or null to describe the bundles that belong to your account.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Bundles': [
        {
            'BundleId': 'string',
            'Name': 'string',
            'Owner': 'string',
            'Description': 'string',
            'ImageId': 'string',
            'RootStorage': {
                'Capacity': 'string'
            },
            'UserStorage': {
                'Capacity': 'string'
            },
            'ComputeType': {
                'Name': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'LastUpdatedTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • Bundles (list) --

      Information about the bundles.

      • (dict) --

        Describes a WorkSpace bundle.

        • BundleId (string) --

          The bundle identifier.

        • Name (string) --

          The name of the bundle.

        • Owner (string) --

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

        • Description (string) --

          A description.

        • ImageId (string) --

          The image identifier of the bundle.

        • RootStorage (dict) --

          The size of the root volume.

          • Capacity (string) --

            The size of the root volume.

        • UserStorage (dict) --

          The size of the user storage.

          • Capacity (string) --

            The size of the user storage.

        • ComputeType (dict) --

          The compute type. For more information, see Amazon WorkSpaces Bundles .

          • Name (string) --

            The compute type.

        • LastUpdatedTime (datetime) --

          The last time that the bundle was updated.

class WorkSpaces.Paginator.DescribeWorkspaceDirectories
paginator = client.get_paginator('describe_workspace_directories')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_workspace_directories().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    DirectoryIds=[
        'string',
    ],
    Limit=123,
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • DirectoryIds (list) --

    The identifiers of the directories. If the value is null, all directories are retrieved.

    • (string) --
  • Limit (integer) -- The maximum number of directories to return.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Directories': [
        {
            'DirectoryId': 'string',
            'Alias': 'string',
            'DirectoryName': 'string',
            'RegistrationCode': 'string',
            'SubnetIds': [
                'string',
            ],
            'DnsIpAddresses': [
                'string',
            ],
            'CustomerUserName': 'string',
            'IamRoleId': 'string',
            'DirectoryType': 'SIMPLE_AD'|'AD_CONNECTOR',
            'WorkspaceSecurityGroupId': 'string',
            'State': 'REGISTERING'|'REGISTERED'|'DEREGISTERING'|'DEREGISTERED'|'ERROR',
            'WorkspaceCreationProperties': {
                'EnableWorkDocs': True|False,
                'EnableInternetAccess': True|False,
                'DefaultOu': 'string',
                'CustomSecurityGroupId': 'string',
                'UserEnabledAsLocalAdministrator': True|False,
                'EnableMaintenanceMode': True|False
            },
            'ipGroupIds': [
                'string',
            ],
            'WorkspaceAccessProperties': {
                'DeviceTypeWindows': 'ALLOW'|'DENY',
                'DeviceTypeOsx': 'ALLOW'|'DENY',
                'DeviceTypeWeb': 'ALLOW'|'DENY',
                'DeviceTypeIos': 'ALLOW'|'DENY',
                'DeviceTypeAndroid': 'ALLOW'|'DENY',
                'DeviceTypeChromeOs': 'ALLOW'|'DENY',
                'DeviceTypeZeroClient': 'ALLOW'|'DENY'
            },
            'Tenancy': 'DEDICATED'|'SHARED',
            'SelfservicePermissions': {
                'RestartWorkspace': 'ENABLED'|'DISABLED',
                'IncreaseVolumeSize': 'ENABLED'|'DISABLED',
                'ChangeComputeType': 'ENABLED'|'DISABLED',
                'SwitchRunningMode': 'ENABLED'|'DISABLED',
                'RebuildWorkspace': 'ENABLED'|'DISABLED'
            }
        },
    ],

}

Response Structure

  • (dict) --

    • Directories (list) --

      Information about the directories.

      • (dict) --

        Describes a directory that is used with Amazon WorkSpaces.

        • DirectoryId (string) --

          The directory identifier.

        • Alias (string) --

          The directory alias.

        • DirectoryName (string) --

          The name of the directory.

        • RegistrationCode (string) --

          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 (list) --

          The identifiers of the subnets used with the directory.

          • (string) --
        • DnsIpAddresses (list) --

          The IP addresses of the DNS servers for the directory.

          • (string) --
        • CustomerUserName (string) --

          The user name for the service account.

        • IamRoleId (string) --

          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 (string) --

          The directory type.

        • WorkspaceSecurityGroupId (string) --

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

        • State (string) --

          The state of the directory's registration with Amazon WorkSpaces.

        • WorkspaceCreationProperties (dict) --

          The default creation properties for all WorkSpaces in the directory.

          • EnableWorkDocs (boolean) --

            Specifies whether the directory is enabled for Amazon WorkDocs.

          • EnableInternetAccess (boolean) --

            Specifies whether to automatically assign an Elastic public IP address to WorkSpaces in this directory by default. If enabled, the Elastic public IP address allows outbound internet access from your WorkSpaces when you’re using an internet gateway in the Amazon VPC in which your WorkSpaces are located. If you're using a Network Address Translation (NAT) gateway for outbound internet access from your VPC, or if your WorkSpaces are in public subnets and you manually assign them Elastic IP addresses, you should disable this setting. This setting applies to new WorkSpaces that you launch or to existing WorkSpaces that you rebuild. For more information, see Configure a VPC for Amazon WorkSpaces .

          • DefaultOu (string) --

            The organizational unit (OU) in the directory for the WorkSpace machine accounts.

          • CustomSecurityGroupId (string) --

            The identifier of any security groups to apply to WorkSpaces when they are created.

          • UserEnabledAsLocalAdministrator (boolean) --

            Specifies whether WorkSpace users are local administrators on their WorkSpaces.

          • EnableMaintenanceMode (boolean) --

            Specifies whether maintenance mode is enabled for WorkSpaces. For more information, see WorkSpace Maintenance .

        • ipGroupIds (list) --

          The identifiers of the IP access control groups associated with the directory.

          • (string) --
        • WorkspaceAccessProperties (dict) --

          The devices and operating systems that users can use to access WorkSpaces.

          • DeviceTypeWindows (string) --

            Indicates whether users can use Windows clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

          • DeviceTypeOsx (string) --

            Indicates whether users can use macOS clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST . For more information, see Restrict WorkSpaces Access to Trusted Devices .

          • DeviceTypeWeb (string) --

            Indicates whether users can access their WorkSpaces through a web browser.

          • DeviceTypeIos (string) --

            Indicates whether users can use iOS devices to access their WorkSpaces.

          • DeviceTypeAndroid (string) --

            Indicates whether users can use Android devices to access their WorkSpaces.

          • DeviceTypeChromeOs (string) --

            Indicates whether users can use Chromebooks to access their WorkSpaces.

          • DeviceTypeZeroClient (string) --

            Indicates whether users can use zero client devices to access their WorkSpaces.

        • Tenancy (string) --

          Specifies whether the directory is dedicated or shared. To use Bring Your Own License (BYOL), this value must be set to DEDICATED . For more information, see Bring Your Own Windows Desktop Images .

        • SelfservicePermissions (dict) --

          The default self-service permissions for WorkSpaces in the directory.

          • RestartWorkspace (string) --

            Specifies whether users can restart their WorkSpace.

          • IncreaseVolumeSize (string) --

            Specifies whether users can increase the volume size of the drives on their WorkSpace.

          • ChangeComputeType (string) --

            Specifies whether users can change the compute type (bundle) for their WorkSpace.

          • SwitchRunningMode (string) --

            Specifies whether users can switch the running mode of their WorkSpace.

          • RebuildWorkspace (string) --

            Specifies whether users can rebuild the operating system of a WorkSpace to its original state.

class WorkSpaces.Paginator.DescribeWorkspaceImages
paginator = client.get_paginator('describe_workspace_images')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_workspace_images().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ImageIds=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ImageIds (list) --

    The identifier of the image.

    • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Images': [
        {
            'ImageId': 'string',
            'Name': 'string',
            'Description': 'string',
            'OperatingSystem': {
                'Type': 'WINDOWS'|'LINUX'
            },
            'State': 'AVAILABLE'|'PENDING'|'ERROR',
            'RequiredTenancy': 'DEFAULT'|'DEDICATED',
            'ErrorCode': 'string',
            'ErrorMessage': 'string'
        },
    ],

}

Response Structure

  • (dict) --

    • Images (list) --

      Information about the images.

      • (dict) --

        Describes a WorkSpace image.

        • ImageId (string) --

          The identifier of the image.

        • Name (string) --

          The name of the image.

        • Description (string) --

          The description of the image.

        • OperatingSystem (dict) --

          The operating system that the image is running.

          • Type (string) --

            The operating system.

        • State (string) --

          The status of the image.

        • RequiredTenancy (string) --

          Specifies whether the image is running on dedicated hardware. When Bring Your Own License (BYOL) is enabled, this value is set to DEDICATED . For more information, see Bring Your Own Windows Desktop Images .

        • ErrorCode (string) --

          The error code that is returned for the image.

        • ErrorMessage (string) --

          The text of the error message that is returned for the image.

class WorkSpaces.Paginator.DescribeWorkspaces
paginator = client.get_paginator('describe_workspaces')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_workspaces().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    WorkspaceIds=[
        'string',
    ],
    DirectoryId='string',
    UserName='string',
    BundleId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • WorkspaceIds (list) --

    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.

    • (string) --
  • DirectoryId (string) -- 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.
  • UserName (string) -- The name of the directory user. You must specify this parameter with DirectoryId .
  • BundleId (string) -- The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Workspaces': [
        {
            'WorkspaceId': 'string',
            'DirectoryId': 'string',
            'UserName': 'string',
            'IpAddress': 'string',
            'State': 'PENDING'|'AVAILABLE'|'IMPAIRED'|'UNHEALTHY'|'REBOOTING'|'STARTING'|'REBUILDING'|'RESTORING'|'MAINTENANCE'|'ADMIN_MAINTENANCE'|'TERMINATING'|'TERMINATED'|'SUSPENDED'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR',
            'BundleId': 'string',
            'SubnetId': 'string',
            'ErrorMessage': 'string',
            'ErrorCode': 'string',
            'ComputerName': 'string',
            'VolumeEncryptionKey': 'string',
            'UserVolumeEncryptionEnabled': True|False,
            'RootVolumeEncryptionEnabled': True|False,
            'WorkspaceProperties': {
                'RunningMode': 'AUTO_STOP'|'ALWAYS_ON',
                'RunningModeAutoStopTimeoutInMinutes': 123,
                'RootVolumeSizeGib': 123,
                'UserVolumeSizeGib': 123,
                'ComputeTypeName': 'VALUE'|'STANDARD'|'PERFORMANCE'|'POWER'|'GRAPHICS'|'POWERPRO'|'GRAPHICSPRO'
            },
            'ModificationStates': [
                {
                    'Resource': 'ROOT_VOLUME'|'USER_VOLUME'|'COMPUTE_TYPE',
                    'State': 'UPDATE_INITIATED'|'UPDATE_IN_PROGRESS'
                },
            ]
        },
    ],

}

Response Structure

  • (dict) --

    • Workspaces (list) --

      Information about the WorkSpaces.

      Because CreateWorkspaces is an asynchronous operation, some of the returned information could be incomplete.

      • (dict) --

        Describes a WorkSpace.

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • DirectoryId (string) --

          The identifier of the AWS Directory Service directory for the WorkSpace.

        • UserName (string) --

          The user for the WorkSpace.

        • IpAddress (string) --

          The IP address of the WorkSpace.

        • State (string) --

          The operational state of the WorkSpace.

        • BundleId (string) --

          The identifier of the bundle used to create the WorkSpace.

        • SubnetId (string) --

          The identifier of the subnet for the WorkSpace.

        • ErrorMessage (string) --

          The text of the error message that is returned if the WorkSpace cannot be created.

        • ErrorCode (string) --

          The error code that is returned if the WorkSpace cannot be created.

        • ComputerName (string) --

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

        • VolumeEncryptionKey (string) --

          The symmetric AWS KMS customer master key (CMK) used to encrypt data stored on your WorkSpace. Amazon WorkSpaces does not support asymmetric CMKs.

        • UserVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the user volume is encrypted.

        • RootVolumeEncryptionEnabled (boolean) --

          Indicates whether the data stored on the root volume is encrypted.

        • WorkspaceProperties (dict) --

          The properties of the WorkSpace.

          • RunningMode (string) --

            The running mode. For more information, see Manage the WorkSpace Running Mode .

          • RunningModeAutoStopTimeoutInMinutes (integer) --

            The time after a user logs off when WorkSpaces are automatically stopped. Configured in 60-minute intervals.

          • RootVolumeSizeGib (integer) --

            The size of the root volume.

          • UserVolumeSizeGib (integer) --

            The size of the user storage.

          • ComputeTypeName (string) --

            The compute type. For more information, see Amazon WorkSpaces Bundles .

        • ModificationStates (list) --

          The modification states of the WorkSpace.

          • (dict) --

            Describes a WorkSpace modification.

            • Resource (string) --

              The resource.

            • State (string) --

              The modification state.

class WorkSpaces.Paginator.DescribeWorkspacesConnectionStatus
paginator = client.get_paginator('describe_workspaces_connection_status')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.describe_workspaces_connection_status().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    WorkspaceIds=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • WorkspaceIds (list) --

    The identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.

    • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'WorkspacesConnectionStatus': [
        {
            'WorkspaceId': 'string',
            'ConnectionState': 'CONNECTED'|'DISCONNECTED'|'UNKNOWN',
            'ConnectionStateCheckTimestamp': datetime(2015, 1, 1),
            'LastKnownUserConnectionTimestamp': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • WorkspacesConnectionStatus (list) --

      Information about the connection status of the WorkSpace.

      • (dict) --

        Describes the connection status of a WorkSpace.

        • WorkspaceId (string) --

          The identifier of the WorkSpace.

        • ConnectionState (string) --

          The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped.

        • ConnectionStateCheckTimestamp (datetime) --

          The timestamp of the connection status check.

        • LastKnownUserConnectionTimestamp (datetime) --

          The timestamp of the last known user connection.

class WorkSpaces.Paginator.ListAvailableManagementCidrRanges
paginator = client.get_paginator('list_available_management_cidr_ranges')
paginate(**kwargs)

Creates an iterator that will paginate through responses from WorkSpaces.Client.list_available_management_cidr_ranges().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ManagementCidrRangeConstraint='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • ManagementCidrRangeConstraint (string) --

    [REQUIRED]

    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).

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ManagementCidrRanges': [
        'string',
    ],

}

Response Structure

  • (dict) --

    • ManagementCidrRanges (list) --

      The list of available IP address ranges, specified as IPv4 CIDR blocks.

      • (string) --