Class: Aws::IoTTwinMaker::Types::UpdateWorkspaceRequest

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

Overview

Note:

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

{
  description: "Description",
  role: "RoleArn",
  workspace_id: "Id", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the workspace.

Returns:

  • (String)


3506
3507
3508
3509
3510
3511
3512
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3506

class UpdateWorkspaceRequest < Struct.new(
  :description,
  :role,
  :workspace_id)
  SENSITIVE = []
  include Aws::Structure
end

#roleString

The ARN of the execution role associated with the workspace.

Returns:

  • (String)


3506
3507
3508
3509
3510
3511
3512
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3506

class UpdateWorkspaceRequest < Struct.new(
  :description,
  :role,
  :workspace_id)
  SENSITIVE = []
  include Aws::Structure
end

#workspace_idString

The ID of the workspace.

Returns:

  • (String)


3506
3507
3508
3509
3510
3511
3512
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3506

class UpdateWorkspaceRequest < Struct.new(
  :description,
  :role,
  :workspace_id)
  SENSITIVE = []
  include Aws::Structure
end