Class: Aws::IoTTwinMaker::Types::GetComponentTypeRequest

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 GetComponentTypeRequest 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.

Returns:

  • (String)


1504
1505
1506
1507
1508
1509
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1504

class GetComponentTypeRequest < 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)


1504
1505
1506
1507
1508
1509
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 1504

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