Class: Aws::WorkSpaces::Types::WorkspaceProperties

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workspaces/types.rb

Overview

Note:

When making an API call, you may pass WorkspaceProperties data as a hash:

{
  running_mode: "AUTO_STOP", # accepts AUTO_STOP, ALWAYS_ON
  running_mode_auto_stop_timeout_in_minutes: 1,
  root_volume_size_gib: 1,
  user_volume_size_gib: 1,
  compute_type_name: "VALUE", # accepts VALUE, STANDARD, PERFORMANCE, POWER, GRAPHICS, POWERPRO, GRAPHICSPRO
}

Describes a WorkSpace.

Instance Attribute Summary collapse

Instance Attribute Details

#compute_type_nameString

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

[1]: aws.amazon.com/workspaces/details/#Amazon_WorkSpaces_Bundles

Returns:

  • (String)


1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/aws-sdk-workspaces/types.rb', line 1933

class WorkspaceProperties < Struct.new(
  :running_mode,
  :running_mode_auto_stop_timeout_in_minutes,
  :root_volume_size_gib,
  :user_volume_size_gib,
  :compute_type_name)
  include Aws::Structure
end

#root_volume_size_gibInteger

The size of the root volume.

Returns:

  • (Integer)


1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/aws-sdk-workspaces/types.rb', line 1933

class WorkspaceProperties < Struct.new(
  :running_mode,
  :running_mode_auto_stop_timeout_in_minutes,
  :root_volume_size_gib,
  :user_volume_size_gib,
  :compute_type_name)
  include Aws::Structure
end

#running_modeString

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

[1]: docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html

Returns:

  • (String)


1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/aws-sdk-workspaces/types.rb', line 1933

class WorkspaceProperties < Struct.new(
  :running_mode,
  :running_mode_auto_stop_timeout_in_minutes,
  :root_volume_size_gib,
  :user_volume_size_gib,
  :compute_type_name)
  include Aws::Structure
end

#running_mode_auto_stop_timeout_in_minutesInteger

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

Returns:

  • (Integer)


1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/aws-sdk-workspaces/types.rb', line 1933

class WorkspaceProperties < Struct.new(
  :running_mode,
  :running_mode_auto_stop_timeout_in_minutes,
  :root_volume_size_gib,
  :user_volume_size_gib,
  :compute_type_name)
  include Aws::Structure
end

#user_volume_size_gibInteger

The size of the user storage.

Returns:

  • (Integer)


1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/aws-sdk-workspaces/types.rb', line 1933

class WorkspaceProperties < Struct.new(
  :running_mode,
  :running_mode_auto_stop_timeout_in_minutes,
  :root_volume_size_gib,
  :user_volume_size_gib,
  :compute_type_name)
  include Aws::Structure
end