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

Class: Aws::IoT::Types::UpdateThingGroupRequest

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

Overview

Note:

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

{
  thing_group_name: "ThingGroupName", # required
  thing_group_properties: { # required
    thing_group_description: "ThingGroupDescription",
    attribute_payload: {
      attributes: {
        "AttributeName" => "AttributeValue",
      },
      merge: false,
    },
  },
  expected_version: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#expected_versionInteger

The expected version of the thing group. If this does not match the version of the thing group being updated, the update will fail.

Returns:

  • (Integer)

    The expected version of the thing group.

#thing_group_nameString

The thing group to update.

Returns:

  • (String)

    The thing group to update.

#thing_group_propertiesTypes::ThingGroupProperties

The thing group properties.

Returns: