Interface UpdateThingRequest.Builder

    • Method Detail

      • thingName

        UpdateThingRequest.Builder thingName​(String thingName)

        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.

        Parameters:
        thingName - 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:
        Returns a reference to this object so that method calls can be chained together.
      • thingTypeName

        UpdateThingRequest.Builder thingTypeName​(String thingTypeName)

        The name of the thing type.

        Parameters:
        thingTypeName - The name of the thing type.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • attributePayload

        UpdateThingRequest.Builder attributePayload​(AttributePayload 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.

        Parameters:
        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:
        Returns a reference to this object so that method calls can be chained together.
      • expectedVersion

        UpdateThingRequest.Builder expectedVersion​(Long expectedVersion)

        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.

        Parameters:
        expectedVersion - 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:
        Returns a reference to this object so that method calls can be chained together.
      • removeThingType

        UpdateThingRequest.Builder removeThingType​(Boolean removeThingType)

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

        Parameters:
        removeThingType - Remove a thing type association. If true, the association is removed.
        Returns:
        Returns a reference to this object so that method calls can be chained together.