Class: Aws::IoTTwinMaker::Types::DeleteComponentTypeRequest

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

{
  component_type_id: "ComponentTypeId", # required
  workspace_id: "Id", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#component_type_idString

The ID of the component type to delete.

Returns:

  • (String)


1214
1215
1216
1217
1218
1219
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1214

class DeleteComponentTypeRequest < Struct.new(
  :component_type_id,
  :workspace_id)
  SENSITIVE = []
  include Aws::Structure
end

#workspace_idString

The ID of the workspace that contains the component type.

Returns:

  • (String)


1214
1215
1216
1217
1218
1219
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1214

class DeleteComponentTypeRequest < Struct.new(
  :component_type_id,
  :workspace_id)
  SENSITIVE = []
  include Aws::Structure
end