You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoT::Types::CreateThingGroupRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateThingGroupRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  thing_group_name: "ThingGroupName", # required
  parent_group_name: "ThingGroupName",
  thing_group_properties: {
    thing_group_description: "ThingGroupDescription",
    attribute_payload: {
      attributes: {
        "AttributeName" => "AttributeValue",
      },
      merge: false,
    },
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#parent_group_nameString

The name of the parent thing group.

Returns:

  • (String)

    The name of the parent thing group.

#tagsArray<Types::Tag>

Metadata which can be used to manage the thing group.

Returns:

  • (Array<Types::Tag>)

    Metadata which can be used to manage the thing group.

#thing_group_nameString

The thing group name to create.

Returns:

  • (String)

    The thing group name to create.

#thing_group_propertiesTypes::ThingGroupProperties

The thing group properties.

Returns: