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

Class: Aws::IoT::Types::UpdateDynamicThingGroupRequest

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

Overview

Note:

When passing UpdateDynamicThingGroupRequest 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,
  index_name: "IndexName",
  query_string: "QueryString",
  query_version: "QueryVersion",
}

Instance Attribute Summary collapse

Instance Attribute Details

#expected_versionInteger

The expected version of the dynamic thing group to update.

Returns:

  • (Integer)

    The expected version of the dynamic thing group to update.

#index_nameString

The dynamic thing group index to update.

Currently one index is supported: \'AWS_Things\'.

Returns:

  • (String)

    The dynamic thing group index to update.

#query_stringString

The dynamic thing group search query string to update.

Returns:

  • (String)

    The dynamic thing group search query string to update.

#query_versionString

The dynamic thing group query version to update.

Currently one query version is supported: \"2017-09-30\". If not specified, the query version defaults to this value.

Returns:

  • (String)

    The dynamic thing group query version to update.

#thing_group_nameString

The name of the dynamic thing group to update.

Returns:

  • (String)

    The name of the dynamic thing group to update.

#thing_group_propertiesTypes::ThingGroupProperties

The dynamic thing group properties to update.

Returns: