Amazon WorkSpaces

2022/07/27 - Amazon WorkSpaces - 1 new api methods

Changes  Added CreateWorkspaceImage API to create a new WorkSpace image from an existing WorkSpace.

CreateWorkspaceImage (new) Link ΒΆ

Creates a new WorkSpace image from an existing WorkSpace.

See also: AWS API Documentation

Request Syntax

client.create_workspace_image(
    Name='string',
    Description='string',
    WorkspaceId='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type Name

string

param Name

[REQUIRED]

The name of the new WorkSpace image.

type Description

string

param Description

[REQUIRED]

The description of the new WorkSpace image.

type WorkspaceId

string

param WorkspaceId

[REQUIRED]

The identifier of the source WorkSpace

type Tags

list

param Tags

The tags that you want to add to the new WorkSpace image. To add tags when you're creating the image, you must create an IAM policy that grants your IAM user permission to use workspaces:CreateTags .

  • (dict) --

    Describes a tag.

    • Key (string) -- [REQUIRED]

      The key of the tag.

    • Value (string) --

      The value of the tag.

rtype

dict

returns

Response Syntax

{
    'ImageId': 'string',
    'Name': 'string',
    'Description': 'string',
    'OperatingSystem': {
        'Type': 'WINDOWS'|'LINUX'
    },
    'State': 'AVAILABLE'|'PENDING'|'ERROR',
    'RequiredTenancy': 'DEFAULT'|'DEDICATED',
    'Created': datetime(2015, 1, 1),
    'OwnerAccountId': 'string'
}

Response Structure

  • (dict) --

    • ImageId (string) --

      The identifier of the new WorkSpace 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 availability 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.

    • Created (datetime) --

      The date when the image was created.

    • OwnerAccountId (string) --

      The identifier of the AWS account that owns the image.