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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass UpdateDynamicThingGroupRequest data as a 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.



10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end

#index_nameString

The dynamic thing group index to update.

<note markdown=“1”> Currently one index is supported: ‘AWS_Things’.

</note>


10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end

#query_stringString

The dynamic thing group search query string to update.



10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end

#query_versionString

The dynamic thing group query version to update.

<note markdown=“1”> Currently one query version is supported: “2017-09-30”. If not specified, the query version defaults to this value.

</note>


10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end

#thing_group_nameString

The name of the dynamic thing group to update.



10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end

#thing_group_propertiesTypes::ThingGroupProperties

The dynamic thing group properties to update.



10979
10980
10981
10982
10983
10984
10985
10986
10987
# File 'lib/aws-sdk-iot/types.rb', line 10979

class UpdateDynamicThingGroupRequest < Struct.new(
  :thing_group_name,
  :thing_group_properties,
  :expected_version,
  :index_name,
  :query_string,
  :query_version)
  include Aws::Structure
end