Class: Aws::IoTTwinMaker::Types::ComponentRequest

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

Overview

An object that sets information about a component type create or update request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#component_type_idString

The ID of the component type.

Returns:

  • (String)


227
228
229
230
231
232
233
234
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 227

class ComponentRequest < Struct.new(
  :description,
  :component_type_id,
  :properties,
  :property_groups)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

The description of the component request.

Returns:

  • (String)


227
228
229
230
231
232
233
234
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 227

class ComponentRequest < Struct.new(
  :description,
  :component_type_id,
  :properties,
  :property_groups)
  SENSITIVE = []
  include Aws::Structure
end

#propertiesHash<String,Types::PropertyRequest>

An object that maps strings to the properties to set in the component type. Each string in the mapping must be unique to this object.

Returns:



227
228
229
230
231
232
233
234
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 227

class ComponentRequest < Struct.new(
  :description,
  :component_type_id,
  :properties,
  :property_groups)
  SENSITIVE = []
  include Aws::Structure
end

#property_groupsHash<String,Types::ComponentPropertyGroupRequest>

The property groups.

Returns:



227
228
229
230
231
232
233
234
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 227

class ComponentRequest < Struct.new(
  :description,
  :component_type_id,
  :properties,
  :property_groups)
  SENSITIVE = []
  include Aws::Structure
end