Class: Aws::WorkSpaces::Types::ModifyWorkspacePropertiesRequest

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 ModifyWorkspacePropertiesRequest data as a hash:

{
  workspace_id: "WorkspaceId", # required
  workspace_properties: { # required
    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
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#workspace_idString

The identifier of the WorkSpace.

Returns:

  • (String)


1165
1166
1167
1168
1169
# File 'lib/aws-sdk-workspaces/types.rb', line 1165

class ModifyWorkspacePropertiesRequest < Struct.new(
  :workspace_id,
  :workspace_properties)
  include Aws::Structure
end

#workspace_propertiesTypes::WorkspaceProperties

The properties of the WorkSpace.



1165
1166
1167
1168
1169
# File 'lib/aws-sdk-workspaces/types.rb', line 1165

class ModifyWorkspacePropertiesRequest < Struct.new(
  :workspace_id,
  :workspace_properties)
  include Aws::Structure
end