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

Class: Aws::IoT::Types::UpdateThingRequest

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

Overview

Note:

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

{
  thing_name: "ThingName", # required
  thing_type_name: "ThingTypeName",
  attribute_payload: {
    attributes: {
      "AttributeName" => "AttributeValue",
    },
    merge: false,
  },
  expected_version: 1,
  remove_thing_type: false,
}

The input for the UpdateThing operation.

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_payloadTypes::AttributePayload

A list of thing attributes, a JSON string containing name-value pairs. For example:

`{\"attributes\":{\"name1\":\"value2\"}}`

This data is used to add new attributes or update existing attributes.

Returns:

#expected_versionInteger

The expected version of the thing record in the registry. If the version of the record in the registry does not match the expected version specified in the request, the UpdateThing request is rejected with a VersionConflictException.

Returns:

  • (Integer)

    The expected version of the thing record in the registry.

#remove_thing_typeBoolean

Remove a thing type association. If true, the association is removed.

Returns:

  • (Boolean)

    Remove a thing type association.

#thing_nameString

The name of the thing to update.

You can\'t change a thing\'s name. To change a thing\'s name, you must create a new thing, give it the new name, and then delete the old thing.

Returns:

  • (String)

    The name of the thing to update.

#thing_type_nameString

The name of the thing type.

Returns:

  • (String)

    The name of the thing type.