Class: Aws::IoTTwinMaker::Types::PropertyGroupRequest

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

{
  group_type: "TABULAR", # accepts TABULAR
  property_names: ["Name"],
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#group_typeString

The group type.

Returns:

  • (String)


3029
3030
3031
3032
3033
3034
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3029

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

#property_namesArray<String>

The names of properties.

Returns:

  • (Array<String>)


3029
3030
3031
3032
3033
3034
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3029

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