Class: Aws::IoTTwinMaker::Types::ComponentPropertyGroupRequest

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

{
  group_type: "TABULAR", # accepts TABULAR
  property_names: ["Name"],
  update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_typeString

The group type.

Returns:

  • (String)


189
190
191
192
193
194
195
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 189

class ComponentPropertyGroupRequest < Struct.new(
  :group_type,
  :property_names,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end

#property_namesArray<String>

The property names.

Returns:

  • (Array<String>)


189
190
191
192
193
194
195
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 189

class ComponentPropertyGroupRequest < Struct.new(
  :group_type,
  :property_names,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end

#update_typeString

The update type.

Returns:

  • (String)


189
190
191
192
193
194
195
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 189

class ComponentPropertyGroupRequest < Struct.new(
  :group_type,
  :property_names,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end