Class: Aws::IoTTwinMaker::Types::PropertyGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTTwinMaker::Types::PropertyGroupRequest
- 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
-
#group_type ⇒ String
The group type.
-
#property_names ⇒ Array<String>
The names of properties.
Instance Attribute Details
#group_type ⇒ String
The group type.
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_names ⇒ Array<String>
The names of properties.
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 |